pub struct MultistatusElement<PropType: XmlSerialize, MemberPropType: XmlSerialize> {
pub responses: Vec<ResponseElement<PropType>>,
pub member_responses: Vec<ResponseElement<MemberPropType>>,
pub sync_token: Option<String>,
}
Fields§
§responses: Vec<ResponseElement<PropType>>
§member_responses: Vec<ResponseElement<MemberPropType>>
§sync_token: Option<String>
Trait Implementations§
Source§impl<T1: XmlSerialize, T2: XmlSerialize> Default for MultistatusElement<T1, T2>
impl<T1: XmlSerialize, T2: XmlSerialize> Default for MultistatusElement<T1, T2>
Source§impl<T1: XmlSerialize, T2: XmlSerialize> Responder for MultistatusElement<T1, T2>
impl<T1: XmlSerialize, T2: XmlSerialize> Responder for MultistatusElement<T1, T2>
Source§impl<PropType: XmlSerialize, MemberPropType: XmlSerialize> XmlRootTag for MultistatusElement<PropType, MemberPropType>
impl<PropType: XmlSerialize, MemberPropType: XmlSerialize> XmlRootTag for MultistatusElement<PropType, MemberPropType>
Source§impl<PropType: XmlSerialize, MemberPropType: XmlSerialize> XmlSerialize for MultistatusElement<PropType, MemberPropType>
impl<PropType: XmlSerialize, MemberPropType: XmlSerialize> XmlSerialize for MultistatusElement<PropType, MemberPropType>
Auto Trait Implementations§
impl<PropType, MemberPropType> Freeze for MultistatusElement<PropType, MemberPropType>
impl<PropType, MemberPropType> RefUnwindSafe for MultistatusElement<PropType, MemberPropType>where
PropType: RefUnwindSafe,
MemberPropType: RefUnwindSafe,
impl<PropType, MemberPropType> Send for MultistatusElement<PropType, MemberPropType>
impl<PropType, MemberPropType> Sync for MultistatusElement<PropType, MemberPropType>
impl<PropType, MemberPropType> Unpin for MultistatusElement<PropType, MemberPropType>
impl<PropType, MemberPropType> UnwindSafe for MultistatusElement<PropType, MemberPropType>where
PropType: UnwindSafe,
MemberPropType: 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
§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