pub struct AttachmentTags {
pub filename: String,
pub mimetype: String,
pub title: Option<String>,
pub extra: HashMap<String, Value>,
}Expand description
Tags specific for attachments
Fields§
§filename: String§mimetype: String§title: Option<String>§extra: HashMap<String, Value>Trait Implementations§
Source§impl Clone for AttachmentTags
impl Clone for AttachmentTags
Source§fn clone(&self) -> AttachmentTags
fn clone(&self) -> AttachmentTags
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 AttachmentTags
impl Debug for AttachmentTags
Source§impl<'de> Deserialize<'de> for AttachmentTags
impl<'de> Deserialize<'de> for AttachmentTags
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 AttachmentTags
impl PartialEq for AttachmentTags
Source§impl Serialize for AttachmentTags
impl Serialize for AttachmentTags
impl Eq for AttachmentTags
impl StructuralPartialEq for AttachmentTags
Auto Trait Implementations§
impl Freeze for AttachmentTags
impl RefUnwindSafe for AttachmentTags
impl Send for AttachmentTags
impl Sync for AttachmentTags
impl Unpin for AttachmentTags
impl UnwindSafe for AttachmentTags
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