pub struct CycleCreateInput {
pub id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub team_id: Option<String>,
pub starts_at: Option<DateTime<Utc>>,
pub ends_at: Option<DateTime<Utc>>,
pub completed_at: Option<DateTime<Utc>>,
}Fields§
§id: Option<String>The identifier in UUID v4 format. If none is provided, the backend will generate one.
name: Option<String>The custom name of the cycle.
description: Option<String>The description of the cycle.
team_id: Option<String>The team to associate the cycle with.
starts_at: Option<DateTime<Utc>>The start date of the cycle.
ends_at: Option<DateTime<Utc>>The end date of the cycle.
completed_at: Option<DateTime<Utc>>The completion time of the cycle. If null, the cycle hasn’t been completed.
Trait Implementations§
Source§impl Clone for CycleCreateInput
impl Clone for CycleCreateInput
Source§fn clone(&self) -> CycleCreateInput
fn clone(&self) -> CycleCreateInput
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 CycleCreateInput
impl Debug for CycleCreateInput
Source§impl Default for CycleCreateInput
impl Default for CycleCreateInput
Source§fn default() -> CycleCreateInput
fn default() -> CycleCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CycleCreateInput
impl<'de> Deserialize<'de> for CycleCreateInput
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 CycleCreateInput
impl RefUnwindSafe for CycleCreateInput
impl Send for CycleCreateInput
impl Sync for CycleCreateInput
impl Unpin for CycleCreateInput
impl UnwindSafe for CycleCreateInput
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