pub struct InProgressItem {
pub id: String,
pub title: Option<String>,
pub elapsed_minutes: i64,
}Expand description
A spec currently in progress
Fields§
§id: StringSpec ID
title: Option<String>Spec title
elapsed_minutes: i64Elapsed time in minutes since status changed to in_progress
Trait Implementations§
Source§impl Clone for InProgressItem
impl Clone for InProgressItem
Source§fn clone(&self) -> InProgressItem
fn clone(&self) -> InProgressItem
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 moreAuto Trait Implementations§
impl Freeze for InProgressItem
impl RefUnwindSafe for InProgressItem
impl Send for InProgressItem
impl Sync for InProgressItem
impl Unpin for InProgressItem
impl UnwindSafe for InProgressItem
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