pub struct ReleaseTaskAttachment {
pub links: Option<Value>,
pub created_on: Option<OffsetDateTime>,
pub modified_by: Option<IdentityRef>,
pub modified_on: Option<OffsetDateTime>,
pub name: Option<String>,
pub record_id: Option<String>,
pub timeline_id: Option<String>,
pub type_: Option<String>,
}
Expand description
Fields§
§links: Option<Value>
Links
created_on: Option<OffsetDateTime>
Data and time when it created.
modified_by: Option<IdentityRef>
§modified_on: Option<OffsetDateTime>
Data and time when modified.
name: Option<String>
Name of the task attachment.
record_id: Option<String>
Record ID of the task.
timeline_id: Option<String>
Timeline ID of the task.
type_: Option<String>
Type of task attachment.
Implementations§
Trait Implementations§
source§impl Clone for ReleaseTaskAttachment
impl Clone for ReleaseTaskAttachment
source§fn clone(&self) -> ReleaseTaskAttachment
fn clone(&self) -> ReleaseTaskAttachment
Returns a copy 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 ReleaseTaskAttachment
impl Debug for ReleaseTaskAttachment
source§impl Default for ReleaseTaskAttachment
impl Default for ReleaseTaskAttachment
source§fn default() -> ReleaseTaskAttachment
fn default() -> ReleaseTaskAttachment
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ReleaseTaskAttachment
impl<'de> Deserialize<'de> for ReleaseTaskAttachment
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 ReleaseTaskAttachment
impl PartialEq for ReleaseTaskAttachment
source§fn eq(&self, other: &ReleaseTaskAttachment) -> bool
fn eq(&self, other: &ReleaseTaskAttachment) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ReleaseTaskAttachment
impl Serialize for ReleaseTaskAttachment
impl StructuralPartialEq for ReleaseTaskAttachment
Auto Trait Implementations§
impl RefUnwindSafe for ReleaseTaskAttachment
impl Send for ReleaseTaskAttachment
impl Sync for ReleaseTaskAttachment
impl Unpin for ReleaseTaskAttachment
impl UnwindSafe for ReleaseTaskAttachment
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