pub struct ElementEnter<M, N> {
pub next: N,
/* private fields */
}
Expand description
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.
Fields§
§next: N
Next part of the path.
Implementations§
Source§impl<M, N> ElementEnter<M, N>
impl<M, N> ElementEnter<M, N>
Source§impl<N> ElementEnter<ExactTagMatch, N>
impl<N> ElementEnter<ExactTagMatch, N>
Source§impl<N> ElementEnter<AnyTagMatch, N>
impl<N> ElementEnter<AnyTagMatch, N>
Trait Implementations§
Auto Trait Implementations§
impl<M, N> Freeze for ElementEnter<M, N>
impl<M, N> RefUnwindSafe for ElementEnter<M, N>where
M: RefUnwindSafe,
N: RefUnwindSafe,
impl<M, N> Send for ElementEnter<M, N>
impl<M, N> Sync for ElementEnter<M, N>
impl<M, N> Unpin for ElementEnter<M, N>
impl<M, N> UnwindSafe for ElementEnter<M, N>where
M: UnwindSafe,
N: UnwindSafe,
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