pub struct AttachmentData {
pub jws: Option<String>,
pub hash: Option<String>,
pub links: Vec<String>,
pub base64: Option<String>,
pub json: Option<String>,
}Expand description
Attachment Data holding structure
Fields§
§jws: Option<String>§hash: Option<String>§links: Vec<String>§base64: Option<String>§json: Option<String>Trait Implementations§
Source§impl Clone for AttachmentData
impl Clone for AttachmentData
Source§fn clone(&self) -> AttachmentData
fn clone(&self) -> AttachmentData
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 AttachmentData
impl Debug for AttachmentData
Source§impl Default for AttachmentData
impl Default for AttachmentData
Source§fn default() -> AttachmentData
fn default() -> AttachmentData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttachmentData
impl<'de> Deserialize<'de> for AttachmentData
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 AttachmentData
impl PartialEq for AttachmentData
Source§impl Serialize for AttachmentData
impl Serialize for AttachmentData
impl Eq for AttachmentData
impl StructuralPartialEq for AttachmentData
Auto Trait Implementations§
impl Freeze for AttachmentData
impl RefUnwindSafe for AttachmentData
impl Send for AttachmentData
impl Sync for AttachmentData
impl Unpin for AttachmentData
impl UnsafeUnpin for AttachmentData
impl UnwindSafe for AttachmentData
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