pub enum Status {
Queued,
Bad,
Unknown,
}
Expand description
Status of items in the queue.
Variants
Queued
Currently queued.
Bad
Known to be bad.
Unknown
Unknown.
Trait Implementations
sourceimpl Into<BlockStatus> for Status
impl Into<BlockStatus> for Status
sourcefn into(self) -> BlockStatus
fn into(self) -> BlockStatus
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more