pub struct TaskMapping {
pub linear_issue_id: String,
pub motion_task_id: Option<String>,
pub sync_source: String,
pub status: MappingStatus,
pub linear_issue_data: Value,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub last_sync_attempt: Option<DateTime<Utc>>,
pub sync_error: Option<String>,
}
Fields§
§linear_issue_id: String
§motion_task_id: Option<String>
§sync_source: String
§status: MappingStatus
§linear_issue_data: Value
§created_at: DateTime<Utc>
§updated_at: DateTime<Utc>
§last_sync_attempt: Option<DateTime<Utc>>
§sync_error: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for TaskMapping
impl Clone for TaskMapping
Source§fn clone(&self) -> TaskMapping
fn clone(&self) -> TaskMapping
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 TaskMapping
impl Debug for TaskMapping
Source§impl<'de> Deserialize<'de> for TaskMapping
impl<'de> Deserialize<'de> for TaskMapping
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
Auto Trait Implementations§
impl Freeze for TaskMapping
impl RefUnwindSafe for TaskMapping
impl Send for TaskMapping
impl Sync for TaskMapping
impl Unpin for TaskMapping
impl UnwindSafe for TaskMapping
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