pub struct LinearProject {
pub id: String,
pub name: String,
pub description: String,
pub state: String,
pub target_date: String,
pub start_date: String,
pub url: String,
pub team_ids: Vec<String>,
pub progress: Option<f64>,
}Fields§
§id: String§name: String§description: String§state: String§target_date: String§start_date: String§url: String§team_ids: Vec<String>§progress: Option<f64>Trait Implementations§
Source§impl Clone for LinearProject
impl Clone for LinearProject
Source§fn clone(&self) -> LinearProject
fn clone(&self) -> LinearProject
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 LinearProject
impl Debug for LinearProject
Source§impl Default for LinearProject
impl Default for LinearProject
Source§fn default() -> LinearProject
fn default() -> LinearProject
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LinearProject
impl<'de> Deserialize<'de> for LinearProject
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 LinearProject
impl RefUnwindSafe for LinearProject
impl Send for LinearProject
impl Sync for LinearProject
impl Unpin for LinearProject
impl UnsafeUnpin for LinearProject
impl UnwindSafe for LinearProject
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