[][src]Struct rapid_xml::tree::ElementEnter

pub struct ElementEnter<M, N> { /* fields omitted */ }

Part of path for TreeDeserializer.

Enters matched element in a tree, nothing is deserialized.

You may want to use the xml_path! macro rather than constructing path manually.

Implementations

impl<M, N> ElementEnter<M, N>[src]

pub fn new(tag_matcher: M, next: N) -> Self[src]

Create ElementEnter matching tag using given matcher

impl<N> ElementEnter<ExactTagMatch, N>[src]

pub fn tag(tag: &'static str, next: N) -> Self[src]

Create ElementEnter matching given tag

impl<N> ElementEnter<AnyTagMatch, N>[src]

pub fn any(next: N) -> Self[src]

Create ElementEnter matching any tag

Trait Implementations

impl<M: Debug, N: Debug> Debug for ElementEnter<M, N>[src]

impl<M: Default, N: Default> Default for ElementEnter<M, N>[src]

Auto Trait Implementations

impl<M, N> RefUnwindSafe for ElementEnter<M, N> where
    M: RefUnwindSafe,
    N: RefUnwindSafe

impl<M, N> Send for ElementEnter<M, N> where
    M: Send,
    N: Send

impl<M, N> Sync for ElementEnter<M, N> where
    M: Sync,
    N: Sync

impl<M, N> Unpin for ElementEnter<M, N> where
    M: Unpin,
    N: Unpin

impl<M, N> UnwindSafe for ElementEnter<M, N> where
    M: UnwindSafe,
    N: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.