pub struct Attachments(pub Vec<Attachment>);Expand description
Attachments capability: the whole list is one component value (empty ⇒
remove it), like Tags/Assignments.
Tuple Fields§
§0: Vec<Attachment>Trait Implementations§
Source§impl Clone for Attachments
impl Clone for Attachments
Source§fn clone(&self) -> Attachments
fn clone(&self) -> Attachments
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 Attachments
impl Debug for Attachments
Source§impl Default for Attachments
impl Default for Attachments
Source§fn default() -> Attachments
fn default() -> Attachments
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Attachments
impl<'de> Deserialize<'de> for Attachments
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
impl Eq for Attachments
Source§impl PartialEq for Attachments
impl PartialEq for Attachments
Source§fn eq(&self, other: &Attachments) -> bool
fn eq(&self, other: &Attachments) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Attachments
impl Serialize for Attachments
impl StructuralPartialEq for Attachments
Auto Trait Implementations§
impl Freeze for Attachments
impl RefUnwindSafe for Attachments
impl Send for Attachments
impl Sync for Attachments
impl Unpin for Attachments
impl UnsafeUnpin for Attachments
impl UnwindSafe for Attachments
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