pub struct PropElement<PN: XmlDeserialize = Propname>(pub Vec<PN>);
Tuple Fields§
§0: Vec<PN>
Trait Implementations§
Source§impl<PN: Clone + XmlDeserialize> Clone for PropElement<PN>
impl<PN: Clone + XmlDeserialize> Clone for PropElement<PN>
Source§fn clone(&self) -> PropElement<PN>
fn clone(&self) -> PropElement<PN>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<PN: Debug + XmlDeserialize> Debug for PropElement<PN>
impl<PN: Debug + XmlDeserialize> Debug for PropElement<PN>
Source§impl<PN: PartialEq + XmlDeserialize> PartialEq for PropElement<PN>
impl<PN: PartialEq + XmlDeserialize> PartialEq for PropElement<PN>
Source§impl<PN: XmlDeserialize> XmlDeserialize for PropElement<PN>
impl<PN: XmlDeserialize> XmlDeserialize for PropElement<PN>
impl<PN: XmlDeserialize> StructuralPartialEq for PropElement<PN>
Auto Trait Implementations§
impl<PN> Freeze for PropElement<PN>
impl<PN> RefUnwindSafe for PropElement<PN>where
PN: RefUnwindSafe,
impl<PN> Send for PropElement<PN>where
PN: Send,
impl<PN> Sync for PropElement<PN>where
PN: Sync,
impl<PN> Unpin for PropElement<PN>where
PN: Unpin,
impl<PN> UnwindSafe for PropElement<PN>where
PN: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more