Lines Matching defs:Url
166 pub struct Url { struct
193 base_url: Option<&'a Url>, argument
240 pub fn parse(self, input: &str) -> Result<Url, crate::ParseError> { in parse()
252 impl Url { implementation
275 pub fn parse(input: &str) -> Result<Url, crate::ParseError> { in parse()
305 pub fn parse_with_params<I, K, V>(input: &str, iter: I) -> Result<Url, crate::ParseError> in parse_with_params()
356 pub fn join(&self, input: &str) -> Result<Url, crate::ParseError> { in join()
2303 pub fn from_file_path<P: AsRef<Path>>(path: P) -> Result<Url, ()> { in from_file_path()
2340 pub fn from_directory_path<P: AsRef<Path>>(path: P) -> Result<Url, ()> { in from_directory_path()
2363 let Url { in serialize_internal() localVariable
2489 impl str::FromStr for Url { implementation
2493 fn from_str(input: &str) -> Result<Url, crate::ParseError> { in from_str()
2498 impl<'a> TryFrom<&'a str> for Url { implementation
2507 impl fmt::Display for Url { implementation
2522 impl fmt::Debug for Url { implementation
2541 impl Eq for Url {} implementation
2544 impl PartialEq for Url { implementation
2552 impl Ord for Url { implementation
2560 impl PartialOrd for Url { implementation
2568 impl hash::Hash for Url { implementation
2579 impl AsRef<str> for Url { implementation
2615 impl serde::Serialize for Url { implementation
2628 impl<'de> serde::Deserialize<'de> for Url { implementation
2629 fn deserialize<D>(deserializer: D) -> Result<Url, D::Error> in deserialize()
2874 fn finish(mut self) -> &'a mut Url { in finish()