#[repr(C)]pub struct XmlQualifiedName {
pub local_name: AzString,
pub namespace: OptionString,
}Expand description
A namespace-qualified XML name (e.g. svg:rect has namespace "svg" and local name "rect").
Fields§
§local_name: AzString§namespace: OptionStringAuto Trait Implementations§
impl Freeze for XmlQualifiedName
impl RefUnwindSafe for XmlQualifiedName
impl Send for XmlQualifiedName
impl Sync for XmlQualifiedName
impl Unpin for XmlQualifiedName
impl UnsafeUnpin for XmlQualifiedName
impl UnwindSafe for XmlQualifiedName
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