pub struct LinearIssue {Show 13 fields
pub id: String,
pub identifier: String,
pub title: String,
pub description: String,
pub priority: Option<i32>,
pub created_at: String,
pub updated_at: String,
pub url: String,
pub assignee: Option<LinearUserRef>,
pub state: Option<LinearStateRef>,
pub team: Option<LinearTeamRef>,
pub label_ids: Vec<String>,
pub project_id: String,
}Fields§
§id: String§identifier: String§title: String§description: String§priority: Option<i32>§created_at: String§updated_at: String§url: String§assignee: Option<LinearUserRef>§state: Option<LinearStateRef>§team: Option<LinearTeamRef>§label_ids: Vec<String>§project_id: StringTrait Implementations§
Source§impl Clone for LinearIssue
impl Clone for LinearIssue
Source§fn clone(&self) -> LinearIssue
fn clone(&self) -> LinearIssue
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 LinearIssue
impl Debug for LinearIssue
Source§impl Default for LinearIssue
impl Default for LinearIssue
Source§fn default() -> LinearIssue
fn default() -> LinearIssue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LinearIssue
impl<'de> Deserialize<'de> for LinearIssue
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 LinearIssue
impl RefUnwindSafe for LinearIssue
impl Send for LinearIssue
impl Sync for LinearIssue
impl Unpin for LinearIssue
impl UnsafeUnpin for LinearIssue
impl UnwindSafe for LinearIssue
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