pub struct Status<'a> { /* private fields */ }
Expand description
STATUS
Property
Implementations§
Source§impl<'a> Status<'a>
impl<'a> Status<'a>
Sourcepub fn append(&mut self, parameters: Parameters<'a>)
pub fn append(&mut self, parameters: Parameters<'a>)
Adds several parameters at once to the property. For creating
several parameters at once, consult the documentation of
the parameters!
macro.
Source§impl Status<'_>
impl Status<'_>
Sourcepub fn needs_action() -> Self
pub fn needs_action() -> Self
Status for a To-Do that needs action.
Sourcepub fn in_process() -> Self
pub fn in_process() -> Self
Status for an in-process To-Do.
Trait Implementations§
Source§impl<'a> Ord for Status<'a>
impl<'a> Ord for Status<'a>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialOrd for Status<'a>
impl<'a> PartialOrd for Status<'a>
impl<'a> Eq for Status<'a>
impl<'a> StructuralPartialEq for Status<'a>
Auto Trait Implementations§
impl<'a> Freeze for Status<'a>
impl<'a> RefUnwindSafe for Status<'a>
impl<'a> Send for Status<'a>
impl<'a> Sync for Status<'a>
impl<'a> Unpin for Status<'a>
impl<'a> UnwindSafe for Status<'a>
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