pub struct TaskAttachment {
pub links: Option<ReferenceLinks>,
pub created_on: Option<OffsetDateTime>,
pub last_changed_by: Option<String>,
pub last_changed_on: Option<OffsetDateTime>,
pub name: Option<String>,
pub record_id: Option<String>,
pub timeline_id: Option<String>,
pub type_: Option<String>,
}Fields§
§links: Option<ReferenceLinks>The class to represent a collection of REST reference links.
created_on: Option<OffsetDateTime>§last_changed_by: Option<String>§last_changed_on: Option<OffsetDateTime>§name: Option<String>§record_id: Option<String>§timeline_id: Option<String>§type_: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for TaskAttachment
impl Clone for TaskAttachment
Source§fn clone(&self) -> TaskAttachment
fn clone(&self) -> TaskAttachment
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 TaskAttachment
impl Debug for TaskAttachment
Source§impl Default for TaskAttachment
impl Default for TaskAttachment
Source§fn default() -> TaskAttachment
fn default() -> TaskAttachment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskAttachment
impl<'de> Deserialize<'de> for TaskAttachment
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 TaskAttachment
impl PartialEq for TaskAttachment
Source§impl Serialize for TaskAttachment
impl Serialize for TaskAttachment
impl StructuralPartialEq for TaskAttachment
Auto Trait Implementations§
impl Freeze for TaskAttachment
impl RefUnwindSafe for TaskAttachment
impl Send for TaskAttachment
impl Sync for TaskAttachment
impl Unpin for TaskAttachment
impl UnwindSafe for TaskAttachment
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
Source§fn deserialize_with(body: ResponseBody) -> Result<D, Error>
fn deserialize_with(body: ResponseBody) -> Result<D, Error>
Deserialize the response body using the specified format. Read more