xso

Enum Item

Source
pub enum Item<'x> {
    XmlDeclaration(XmlVersion),
    ElementHeadStart(Namespace, Cow<'x, NcNameStr>),
    Attribute(Namespace, Cow<'x, NcNameStr>, Cow<'x, str>),
    ElementHeadEnd,
    Text(Cow<'x, str>),
    ElementFoot,
}
Expand description

An encodable item.

Unlike rxml::Item, the contents of this item may either be owned or borrowed, individually. This enables the use in an crate::AsXml trait even if data needs to be generated during serialisation.

Variants§

§

XmlDeclaration(XmlVersion)

XML declaration

§

ElementHeadStart(Namespace, Cow<'x, NcNameStr>)

Start of an element header

Tuple Fields

§0: Namespace

Namespace name

§1: Cow<'x, NcNameStr>

Local name of the attribute

§

Attribute(Namespace, Cow<'x, NcNameStr>, Cow<'x, str>)

An attribute key/value pair

Tuple Fields

§0: Namespace

Namespace name

§1: Cow<'x, NcNameStr>

Local name of the attribute

§2: Cow<'x, str>

Value of the attribute

§

ElementHeadEnd

End of an element header

§

Text(Cow<'x, str>)

A piece of text (in element content, not attributes)

§

ElementFoot

Footer of an element

This can be used either in places where Text could be used to close the most recently opened unclosed element, or it can be used instead of ElementHeadEnd to close the element using />, without any child content.

Implementations§

Source§

impl Item<'_>

Source

pub fn into_owned(self) -> Item<'static>

Exchange all borrowed pieces inside this item for owned items, cloning them if necessary.

Source

pub fn as_rxml_item(&self) -> Item<'_>

Return an rxml::Item, which borrows data from this item.

Trait Implementations§

Source§

impl<'x> Debug for Item<'x>

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'x> Freeze for Item<'x>

§

impl<'x> RefUnwindSafe for Item<'x>

§

impl<'x> Send for Item<'x>

§

impl<'x> Sync for Item<'x>

§

impl<'x> Unpin for Item<'x>

§

impl<'x> UnwindSafe for Item<'x>

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<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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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.