pub enum Status {
Unimplemented,
Partial,
Implemented,
Rejected,
}Expand description
How far along a row is.
Variants§
Unimplemented
Recognised and not done. The __has_* operators answer no.
Partial
Some of it works. The __has_* operators still answer no, because a feature that
works most of the time is exactly the case where the fallback path is the safer one.
Implemented
Done, with a test named against it.
Rejected
Will not be done, and the row says why. nested_functions is the example.
Implementations§
Trait Implementations§
impl Copy for Status
impl Eq for Status
Source§impl Ord for Status
impl Ord for Status
1.21.0 (const: unstable) · 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
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialOrd for Status
impl PartialOrd for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnsafeUnpin for Status
impl UnwindSafe for Status
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