pub struct Base64AttachmentData {
pub base64: String,
pub jws: Option<String>,
}Fields§
§base64: StringBase64-encoded data, when representing arbitrary content inline.
jws: Option<String>A JSON Web Signature over the content of the attachment.
Trait Implementations§
Source§impl Clone for Base64AttachmentData
impl Clone for Base64AttachmentData
Source§fn clone(&self) -> Base64AttachmentData
fn clone(&self) -> Base64AttachmentData
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 Base64AttachmentData
impl Debug for Base64AttachmentData
Source§impl<'de> Deserialize<'de> for Base64AttachmentData
impl<'de> Deserialize<'de> for Base64AttachmentData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for Base64AttachmentData
impl PartialEq for Base64AttachmentData
Source§impl Serialize for Base64AttachmentData
impl Serialize for Base64AttachmentData
impl Eq for Base64AttachmentData
impl StructuralPartialEq for Base64AttachmentData
Auto Trait Implementations§
impl Freeze for Base64AttachmentData
impl RefUnwindSafe for Base64AttachmentData
impl Send for Base64AttachmentData
impl Sync for Base64AttachmentData
impl Unpin for Base64AttachmentData
impl UnwindSafe for Base64AttachmentData
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