pub enum WaiterError {
Timeout,
NotStarted,
}
Expand description
An error happened while waiting.
Variants§
Trait Implementations§
Source§impl Clone for WaiterError
impl Clone for WaiterError
Source§fn clone(&self) -> WaiterError
fn clone(&self) -> WaiterError
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 WaiterError
impl Debug for WaiterError
Source§impl Ord for WaiterError
impl Ord for WaiterError
Source§fn cmp(&self, other: &WaiterError) -> Ordering
fn cmp(&self, other: &WaiterError) -> Ordering
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 PartialEq for WaiterError
impl PartialEq for WaiterError
Source§impl PartialOrd for WaiterError
impl PartialOrd for WaiterError
impl Copy for WaiterError
impl Eq for WaiterError
impl StructuralPartialEq for WaiterError
Auto Trait Implementations§
impl Freeze for WaiterError
impl RefUnwindSafe for WaiterError
impl Send for WaiterError
impl Sync for WaiterError
impl Unpin for WaiterError
impl UnwindSafe for WaiterError
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