pub struct Multistatus {
pub response: Vec<Response>,
pub responsedescription: Option<ResponseDescription>,
}Expand description
The multistatus XML element as defined in RFC 4918.
Fields§
§response: Vec<Response>§responsedescription: Option<ResponseDescription>Trait Implementations§
Source§impl Clone for Multistatus
impl Clone for Multistatus
Source§fn clone(&self) -> Multistatus
fn clone(&self) -> Multistatus
Returns a duplicate 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 Debug for Multistatus
impl Debug for Multistatus
Source§impl Default for Multistatus
impl Default for Multistatus
Source§fn default() -> Multistatus
fn default() -> Multistatus
Returns the “default value” for a type. Read more
Source§impl Element for Multistatus
impl Element for Multistatus
Source§const LOCAL_NAME: &'static str = "multistatus"
const LOCAL_NAME: &'static str = "multistatus"
The local name of the element (the name inside the namespace), e.g.
multistatusSource§impl From<Multistatus> for Value
impl From<Multistatus> for Value
Source§fn from(_: Multistatus) -> Value
fn from(_: Multistatus) -> Value
Converts to this type from the input type.
Source§impl PartialEq for Multistatus
impl PartialEq for Multistatus
Source§impl TryFrom<&Value> for Multistatus
impl TryFrom<&Value> for Multistatus
impl StructuralPartialEq for Multistatus
Auto Trait Implementations§
impl !Freeze for Multistatus
impl RefUnwindSafe for Multistatus
impl Send for Multistatus
impl Sync for Multistatus
impl Unpin for Multistatus
impl UnwindSafe for Multistatus
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