pub struct XmlNode {
pub name: OwnedName,
pub attributes: Vec<OwnedAttribute>,
pub namespace: Namespace,
pub elements: Vec<XmlElement>,
pub parent: Option<Weak<RefCell<XmlNode>>>,
}
Fields§
§name: OwnedName
§attributes: Vec<OwnedAttribute>
§namespace: Namespace
§elements: Vec<XmlElement>
§parent: Option<Weak<RefCell<XmlNode>>>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for XmlNode
impl !RefUnwindSafe for XmlNode
impl !Send for XmlNode
impl !Sync for XmlNode
impl Unpin for XmlNode
impl !UnwindSafe for XmlNode
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