pub struct Project {Show 17 fields
pub abbreviation: Option<String>,
pub archived: bool,
pub color: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub days_to_thermometer: u64,
pub description: Option<String>,
pub entity_type: String,
pub external_id: Option<String>,
pub follower_ids: Vec<Uuid>,
pub id: u64,
pub iteration_length: u64,
pub name: String,
pub show_thermometer: bool,
pub start_time: DateTime<Utc>,
pub stats: ProjectStats,
pub team_id: u64,
pub updated_at: Option<DateTime<Utc>>,
}Fields§
§abbreviation: Option<String>§archived: bool§color: Option<String>§created_at: Option<DateTime<Utc>>§days_to_thermometer: u64§description: Option<String>§entity_type: String§external_id: Option<String>§follower_ids: Vec<Uuid>§id: u64§iteration_length: u64§name: String§show_thermometer: bool§start_time: DateTime<Utc>§stats: ProjectStats§team_id: u64§updated_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Project
impl<'de> Deserialize<'de> for Project
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 Project
impl RefUnwindSafe for Project
impl Send for Project
impl Sync for Project
impl Unpin for Project
impl UnsafeUnpin for Project
impl UnwindSafe for Project
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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