pub enum Response {
Propstat {
href: Href,
propstat: NonEmpty<Propstat>,
responsedescription: Option<ResponseDescription>,
},
Status {
href: NonEmpty<Href>,
status: Status,
responsedescription: Option<ResponseDescription>,
},
}
Expand description
The response
XML element as defined in RFC 4918.
Variants§
Trait Implementations§
Source§impl Element for Response
impl Element for Response
Source§const LOCAL_NAME: &'static str = "response"
const LOCAL_NAME: &'static str = "response"
The local name of the element (the name inside the namespace), e.g.
multistatus
impl StructuralPartialEq for Response
Auto Trait Implementations§
impl !Freeze for Response
impl RefUnwindSafe for Response
impl Send for Response
impl Sync for Response
impl Unpin for Response
impl UnwindSafe for Response
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