pub struct AttributeView<'a> {
pub local_name: &'a str,
pub namespace_uri: &'a str,
pub prefix: &'a str,
pub value: &'a str,
}Expand description
View of a non-xmlns attribute.
Fields§
§local_name: &'a str§namespace_uri: &'a str§prefix: &'a str§value: &'a strAlready unescaped (entity references resolved by quick-xml).
Trait Implementations§
Source§impl<'a> Clone for AttributeView<'a>
impl<'a> Clone for AttributeView<'a>
Source§fn clone(&self) -> AttributeView<'a>
fn clone(&self) -> AttributeView<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for AttributeView<'a>
Auto Trait Implementations§
impl<'a> Freeze for AttributeView<'a>
impl<'a> RefUnwindSafe for AttributeView<'a>
impl<'a> Send for AttributeView<'a>
impl<'a> Sync for AttributeView<'a>
impl<'a> Unpin for AttributeView<'a>
impl<'a> UnsafeUnpin for AttributeView<'a>
impl<'a> UnwindSafe for AttributeView<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more