1 2 3 4 5 6 7 8 9 10
pub use super::super::validators::uri::URI; use super::*; impl Value for URI { fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> { f.write_str(self.get_full_uri())?; Ok(()) } }