pub struct LinearIssue {Show 15 fields
pub id: String,
pub identifier: String,
pub title: String,
pub description: Option<String>,
pub state: WorkflowState,
pub assignee: Option<User>,
pub team: Team,
pub project: Option<Project>,
pub priority: Option<u32>,
pub estimate: Option<f64>,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub due_date: Option<String>,
pub completed_at: Option<DateTime<Utc>>,
pub labels: Vec<IssueLabel>,
}
Fields§
§id: String
§identifier: String
§title: String
§description: Option<String>
§state: WorkflowState
§assignee: Option<User>
§team: Team
§project: Option<Project>
§priority: Option<u32>
§estimate: Option<f64>
§created_at: DateTime<Utc>
§updated_at: DateTime<Utc>
§due_date: Option<String>
§completed_at: Option<DateTime<Utc>>
§labels: Vec<IssueLabel>
Trait 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 · 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<'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 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