Struct nxml_rs::Element

source ·
pub struct Element {
    pub name: String,
    pub attributes: IndexMap<String, String>,
    pub children: Vec<Element>,
    pub text_content: String,
}
Expand description

An owned XML element, easy to create and/or manipulate.

Fields§

§name: String§attributes: IndexMap<String, String>§children: Vec<Element>§text_content: String

Implementations§

source§

impl Element

source

pub fn new(name: impl ToString) -> Element

source

pub fn attr(&self, key: &str) -> Option<&str>

source

pub fn child(&self, name: &str) -> Option<&Element>

Find the first child element with the given name.

source

pub fn children<'a>( &'a self, name: &'a str ) -> impl Iterator<Item = &'a Element> + 'a

Iterate over all child elements with the given name.

source

pub fn set_attr(&mut self, key: impl ToString, value: impl ToString)

source

pub fn remove_attr(&mut self, key: &str) -> Option<String>

source

pub fn with_attr(self, key: impl ToString, value: impl ToString) -> Self

source

pub fn with_text(self, text: impl ToString) -> Self

source

pub fn with_child(self, element: Element) -> Self

source§

impl Element

source

pub fn parse(s: &str) -> Result<Self, NxmlError<'_>>

source

pub fn parse_lenient(s: &str) -> (Self, Vec<NxmlError<'_>>)

Trait Implementations§

source§

impl Debug for Element

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Element

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for Element

source§

fn eq(&self, other: &Element) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'e> Shl<&str> for &'e Element

§

type Output = &'e str

The resulting type after applying the << operator.
source§

fn shl(self, rhs: &str) -> Self::Output

Performs the << operation. Read more
source§

impl<'e> Shr<&str> for &'e Element

§

type Output = &'e Element

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: &str) -> Self::Output

Performs the >> operation. Read more
source§

impl Eq for Element

source§

impl StructuralPartialEq for Element

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.