pub enum FulfillState {
Pending,
Fulfilled(String),
Cancelled,
}Expand description
Outcome of a pending entry once it leaves the queue.
Variants§
Trait Implementations§
Source§impl Clone for FulfillState
impl Clone for FulfillState
Source§fn clone(&self) -> FulfillState
fn clone(&self) -> FulfillState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FulfillState
impl RefUnwindSafe for FulfillState
impl Send for FulfillState
impl Sync for FulfillState
impl Unpin for FulfillState
impl UnsafeUnpin for FulfillState
impl UnwindSafe for FulfillState
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