pub struct MilestoneSignal {
pub id: String,
pub title: String,
pub due_date: DateTime<Utc>,
pub days_until_due: i64,
pub is_overdue: bool,
pub is_blocked: bool,
}Fields§
§id: String§title: String§due_date: DateTime<Utc>§days_until_due: i64§is_overdue: bool§is_blocked: boolTrait Implementations§
Source§impl Clone for MilestoneSignal
impl Clone for MilestoneSignal
Source§fn clone(&self) -> MilestoneSignal
fn clone(&self) -> MilestoneSignal
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 MilestoneSignal
impl Debug for MilestoneSignal
Auto Trait Implementations§
impl Freeze for MilestoneSignal
impl RefUnwindSafe for MilestoneSignal
impl Send for MilestoneSignal
impl Sync for MilestoneSignal
impl Unpin for MilestoneSignal
impl UnsafeUnpin for MilestoneSignal
impl UnwindSafe for MilestoneSignal
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