Struct xml::attribute::OwnedAttribute
source · [−]Expand description
An owned version of an XML attribute.
Consists of an owned qualified name and an owned string value.
Fields
name: OwnedName
Attribute name.
value: String
Attribute value.
Implementations
sourceimpl OwnedAttribute
impl OwnedAttribute
Trait Implementations
sourceimpl Clone for OwnedAttribute
impl Clone for OwnedAttribute
sourcefn clone(&self) -> OwnedAttribute
fn clone(&self) -> OwnedAttribute
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for OwnedAttribute
impl Debug for OwnedAttribute
sourceimpl Display for OwnedAttribute
impl Display for OwnedAttribute
sourceimpl Hash for OwnedAttribute
impl Hash for OwnedAttribute
sourceimpl PartialEq<OwnedAttribute> for OwnedAttribute
impl PartialEq<OwnedAttribute> for OwnedAttribute
sourcefn eq(&self, other: &OwnedAttribute) -> bool
fn eq(&self, other: &OwnedAttribute) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &OwnedAttribute) -> bool
fn ne(&self, other: &OwnedAttribute) -> bool
This method tests for !=
.
impl Eq for OwnedAttribute
impl StructuralEq for OwnedAttribute
impl StructuralPartialEq for OwnedAttribute
Auto Trait Implementations
impl RefUnwindSafe for OwnedAttribute
impl Send for OwnedAttribute
impl Sync for OwnedAttribute
impl Unpin for OwnedAttribute
impl UnwindSafe for OwnedAttribute
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more