pub enum Reasons {
UnSupported(UnSupportedReasons),
SQL(SQLReasons),
Other(String),
}
Expand description
§Reason for UnSupported
Variants§
Trait Implementations§
impl StructuralPartialEq for Reasons
Auto Trait Implementations§
impl Freeze for Reasons
impl RefUnwindSafe for Reasons
impl Send for Reasons
impl Sync for Reasons
impl Unpin for Reasons
impl UnwindSafe for Reasons
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