Enum url::SchemeData 
                   
                       [−]
                   
               [src]
pub enum SchemeData {
    Relative(RelativeSchemeData),
    NonRelative(String),
}The components of the URL whose representation depends on where the scheme is relative.
Variants
Relative | Components for URLs in a relative scheme such as HTTP.  | |
NonRelative | No further structure is assumed for non-relative schemes such as  This is a single percent-encoded string, whose interpretation depends on the scheme. Percent encoded strings are within the ASCII range.  |