pub struct Cycle {
pub id: String,
pub workspace_id: String,
pub team_id: String,
pub team_key: String,
pub number: i32,
pub name: Option<String>,
pub starts_at: Option<String>,
pub ends_at: Option<String>,
pub completed_at: Option<String>,
pub archived_at: Option<String>,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: String§workspace_id: String§team_id: String§team_key: String§number: i32§name: Option<String>§starts_at: Option<String>§ends_at: Option<String>§completed_at: Option<String>§archived_at: Option<String>§created_at: String§updated_at: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Cycle
impl<'de> Deserialize<'de> for Cycle
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
impl StructuralPartialEq for Cycle
Auto Trait Implementations§
impl Freeze for Cycle
impl RefUnwindSafe for Cycle
impl Send for Cycle
impl Sync for Cycle
impl Unpin for Cycle
impl UnsafeUnpin for Cycle
impl UnwindSafe for Cycle
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