pub struct LinearIssue {Show 17 fields
pub id: String,
pub identifier: String,
pub title: String,
pub description: Option<String>,
pub priority: i32,
pub url: Option<String>,
pub state_id: Option<String>,
pub state_name: Option<String>,
pub state_type: Option<String>,
pub assignee_id: Option<String>,
pub assignee_name: Option<String>,
pub team_id: Option<String>,
pub team_key: Option<String>,
pub team_name: Option<String>,
pub labels: Vec<(String, String)>,
pub updated_at: Option<String>,
pub created_at: Option<String>,
}Fields§
§id: String§identifier: String§title: String§description: Option<String>§priority: i32§url: Option<String>§state_id: Option<String>§state_name: Option<String>§state_type: Option<String>§assignee_id: Option<String>§assignee_name: Option<String>§team_id: Option<String>§team_key: Option<String>§team_name: Option<String>§labels: Vec<(String, String)>§updated_at: Option<String>§created_at: Option<String>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 (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
impl Eq for LinearIssue
Source§impl PartialEq for LinearIssue
impl PartialEq for LinearIssue
impl StructuralPartialEq for LinearIssue
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more