Lines Matching defs:Scheme
13 pub struct Scheme { struct
14 pub(super) inner: Scheme2, argument
30 impl Scheme { implementation
70 impl<'a> TryFrom<&'a [u8]> for Scheme { implementation
92 impl<'a> TryFrom<&'a str> for Scheme { implementation
100 impl FromStr for Scheme { implementation
108 impl fmt::Debug for Scheme { implementation
114 impl fmt::Display for Scheme { implementation
120 impl AsRef<str> for Scheme { implementation
127 impl PartialEq for Scheme { implementation
142 impl Eq for Scheme {} implementation
153 impl PartialEq<str> for Scheme { implementation
167 impl Hash for Scheme { implementation
334 impl From<Scheme2> for Scheme { implementation
360 fn scheme(s: &str) -> Scheme { in scheme()