pub enum ExistsError {
Status404(Value),
DefaultResponse(Value),
UnknownValue(Value),
}Expand description
Struct for typed errors of method [exists]
Variants§
Trait Implementations§
Source§impl Clone for ExistsError
impl Clone for ExistsError
Source§fn clone(&self) -> ExistsError
fn clone(&self) -> ExistsError
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 moreSource§impl Debug for ExistsError
impl Debug for ExistsError
Source§impl<'de> Deserialize<'de> for ExistsError
impl<'de> Deserialize<'de> for ExistsError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExistsError
impl RefUnwindSafe for ExistsError
impl Send for ExistsError
impl Sync for ExistsError
impl Unpin for ExistsError
impl UnsafeUnpin for ExistsError
impl UnwindSafe for ExistsError
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