Home
last modified time | relevance | path

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

/external/rust/crates/xml-rs/src/
Dname.rs93 pub fn to_owned(&self) -> OwnedName { in to_owned()
180 pub struct OwnedName { struct
191 impl fmt::Display for OwnedName { argument
198 impl OwnedName { implementation
250 impl<'a> From<Name<'a>> for OwnedName { implementation
252 fn from(n: Name<'a>) -> OwnedName { in from()
257 impl FromStr for OwnedName { implementation
269 fn from_str(s: &str) -> Result<OwnedName, ()> { in from_str()
Dattribute.rs71 pub fn new<S: Into<String>>(name: OwnedName, value: S) -> OwnedAttribute { in new()