Home
last modified time | relevance | path

Searched defs:OwnedName (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/xml-rs/src/
Dname.rs92 pub fn to_owned(&self) -> OwnedName { in to_owned()
173 pub struct OwnedName { struct
184 impl fmt::Display for OwnedName { argument
191 impl OwnedName { impl
239 impl<'a> From<Name<'a>> for OwnedName { implementation
241 fn from(n: Name<'a>) -> OwnedName { in from()
246 impl FromStr for OwnedName { implementation
258 fn from_str(s: &str) -> Result<OwnedName, ()> { in from_str()
Dattribute.rs67 pub fn new<S: Into<String>>(name: OwnedName, value: S) -> OwnedAttribute { in new()