pub enum Node {
Element(Element),
Text(String),
}
Expand description
A node in an element tree.
Variants§
Implementations§
source§impl Node
impl Node
sourcepub fn as_element(&self) -> Option<&Element>
pub fn as_element(&self) -> Option<&Element>
Turns this into a reference to an Element
if this is an element node.
Else this returns None
.
§Examples
use minidom::Node;
let elm = Node::Element("<meow xmlns=\"ns1\"/>".parse().unwrap());
let txt = Node::Text("meow".to_owned());
assert_eq!(elm.as_element().unwrap().name(), "meow");
assert_eq!(txt.as_element(), None);
sourcepub fn as_element_mut(&mut self) -> Option<&mut Element>
pub fn as_element_mut(&mut self) -> Option<&mut Element>
Turns this into a mutable reference of an Element
if this is an element node.
Else this returns None
.
§Examples
use minidom::Node;
let mut elm = Node::Element("<meow xmlns=\"ns1\"/>".parse().unwrap());
let mut txt = Node::Text("meow".to_owned());
assert_eq!(elm.as_element_mut().unwrap().name(), "meow");
assert_eq!(txt.as_element_mut(), None);
sourcepub fn into_element(self) -> Option<Element>
pub fn into_element(self) -> Option<Element>
Turns this into an Element
, consuming self, if this is an element node.
Else this returns None
.
§Examples
use minidom::Node;
let elm = Node::Element("<meow xmlns=\"ns1\"/>".parse().unwrap());
let txt = Node::Text("meow".to_owned());
assert_eq!(elm.into_element().unwrap().name(), "meow");
assert_eq!(txt.into_element(), None);
sourcepub fn as_text(&self) -> Option<&str>
pub fn as_text(&self) -> Option<&str>
Turns this into an &str
if this is a text node.
Else this returns None
.
§Examples
use minidom::Node;
let elm = Node::Element("<meow xmlns=\"ns1\"/>".parse().unwrap());
let txt = Node::Text("meow".to_owned());
assert_eq!(elm.as_text(), None);
assert_eq!(txt.as_text().unwrap(), "meow");
sourcepub fn as_text_mut(&mut self) -> Option<&mut String>
pub fn as_text_mut(&mut self) -> Option<&mut String>
Turns this into an &mut String
if this is a text node.
Else this returns None
.
§Examples
use minidom::Node;
let mut elm = Node::Element("<meow xmlns=\"ns1\"/>".parse().unwrap());
let mut txt = Node::Text("meow".to_owned());
assert_eq!(elm.as_text_mut(), None);
{
let text_mut = txt.as_text_mut().unwrap();
assert_eq!(text_mut, "meow");
text_mut.push_str("zies");
assert_eq!(text_mut, "meowzies");
}
assert_eq!(txt.as_text().unwrap(), "meowzies");
sourcepub fn into_text(self) -> Option<String>
pub fn into_text(self) -> Option<String>
Turns this into an String
, consuming self, if this is a text node.
Else this returns None
.
§Examples
use minidom::Node;
let elm = Node::Element("<meow xmlns=\"ns1\"/>".parse().unwrap());
let txt = Node::Text("meow".to_owned());
assert_eq!(elm.into_text(), None);
assert_eq!(txt.into_text().unwrap(), "meow");
Trait Implementations§
source§impl From<ElementBuilder> for Node
impl From<ElementBuilder> for Node
source§fn from(builder: ElementBuilder) -> Node
fn from(builder: ElementBuilder) -> Node
Converts to this type from the input type.
impl Eq for Node
Auto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)