pub struct Envelope {
pub header_xml: Option<String>,
pub body_xml: String,
}Expand description
SOAP-Envelope (Header + Body).
Fields§
§header_xml: Option<String>Optional Header-Inhalt als Raw-XML.
body_xml: StringBody-Inhalt als Raw-XML (z.B. ein Operation-Request-Element).
Trait Implementations§
impl Eq for Envelope
impl StructuralPartialEq for Envelope
Auto Trait Implementations§
impl Freeze for Envelope
impl RefUnwindSafe for Envelope
impl Send for Envelope
impl Sync for Envelope
impl Unpin for Envelope
impl UnsafeUnpin for Envelope
impl UnwindSafe for Envelope
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