pub struct OutputAttachment {
pub _id: String,
pub _type: String,
pub _created_by: String,
pub _created_at: i64,
pub _updated_by: Option<Option<String>>,
pub _updated_at: Option<Option<i64>>,
pub name: String,
pub size: i32,
pub content_type: String,
pub id: String,
pub hashes: Option<Option<Vec<String>>>,
}Fields§
§_id: String§_type: String§_created_by: String§_created_at: i64§_updated_by: Option<Option<String>>§_updated_at: Option<Option<i64>>§name: String§size: i32§content_type: String§id: String§hashes: Option<Option<Vec<String>>>Implementations§
Trait Implementations§
Source§impl Clone for OutputAttachment
impl Clone for OutputAttachment
Source§fn clone(&self) -> OutputAttachment
fn clone(&self) -> OutputAttachment
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 OutputAttachment
impl Debug for OutputAttachment
Source§impl Default for OutputAttachment
impl Default for OutputAttachment
Source§fn default() -> OutputAttachment
fn default() -> OutputAttachment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputAttachment
impl<'de> Deserialize<'de> for OutputAttachment
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 OutputAttachment
impl PartialEq for OutputAttachment
Source§impl Serialize for OutputAttachment
impl Serialize for OutputAttachment
impl StructuralPartialEq for OutputAttachment
Auto Trait Implementations§
impl Freeze for OutputAttachment
impl RefUnwindSafe for OutputAttachment
impl Send for OutputAttachment
impl Sync for OutputAttachment
impl Unpin for OutputAttachment
impl UnwindSafe for OutputAttachment
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