Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions data-url/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ macro_rules! require {
pub mod forgiving_base64;
pub mod mime;

#[derive(Debug)]
pub struct DataUrl<'a> {
mime_type: mime::Mime,
base64: bool,
Expand Down Expand Up @@ -121,6 +122,7 @@ impl<'a> DataUrl<'a> {
}

/// The URL’s fragment identifier (after `#`)
#[derive(Debug)]
pub struct FragmentIdentifier<'a>(&'a str);

impl FragmentIdentifier<'_> {
Expand Down