pub struct MtomMessage {
pub boundary: String,
pub envelope_xml: String,
pub attachments: Vec<Attachment>,
}Expand description
Komplette MTOM-Message: SOAP-Envelope + Attachments.
Fields§
§boundary: StringBoundary-String fuer den Multipart-Container.
envelope_xml: StringSOAP-Envelope-XML (Root-Part).
attachments: Vec<Attachment>Anhang-Liste.
Implementations§
Source§impl MtomMessage
impl MtomMessage
Trait Implementations§
Source§impl Clone for MtomMessage
impl Clone for MtomMessage
Source§fn clone(&self) -> MtomMessage
fn clone(&self) -> MtomMessage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MtomMessage
impl Debug for MtomMessage
Source§impl PartialEq for MtomMessage
impl PartialEq for MtomMessage
Source§fn eq(&self, other: &MtomMessage) -> bool
fn eq(&self, other: &MtomMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MtomMessage
impl StructuralPartialEq for MtomMessage
Auto Trait Implementations§
impl Freeze for MtomMessage
impl RefUnwindSafe for MtomMessage
impl Send for MtomMessage
impl Sync for MtomMessage
impl Unpin for MtomMessage
impl UnsafeUnpin for MtomMessage
impl UnwindSafe for MtomMessage
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