pub enum WindmillError {
Incomplete,
BadRequest,
ClosedAuction,
}Expand description
Enum of built in Error types
Variants§
Trait Implementations§
Source§impl Clone for WindmillError
impl Clone for WindmillError
Source§fn clone(&self) -> WindmillError
fn clone(&self) -> WindmillError
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 WindmillError
impl Debug for WindmillError
Source§impl Display for WindmillError
impl Display for WindmillError
Source§impl Error for WindmillError
impl Error for WindmillError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
Source§impl PartialEq for WindmillError
impl PartialEq for WindmillError
impl Copy for WindmillError
impl StructuralPartialEq for WindmillError
Auto Trait Implementations§
impl Freeze for WindmillError
impl RefUnwindSafe for WindmillError
impl Send for WindmillError
impl Sync for WindmillError
impl Unpin for WindmillError
impl UnwindSafe for WindmillError
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