pub enum GetUsernameError {
UserNotFound,
}
Variants§
UserNotFound
Trait Implementations§
Source§impl Clone for GetUsernameError
impl Clone for GetUsernameError
Source§fn clone(&self) -> GetUsernameError
fn clone(&self) -> GetUsernameError
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 GetUsernameError
impl Debug for GetUsernameError
Source§impl<'de> Deserialize<'de> for GetUsernameError
impl<'de> Deserialize<'de> for GetUsernameError
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
Source§impl PartialEq for GetUsernameError
impl PartialEq for GetUsernameError
Source§impl Serialize for GetUsernameError
impl Serialize for GetUsernameError
impl Eq for GetUsernameError
impl StructuralPartialEq for GetUsernameError
Auto Trait Implementations§
impl Freeze for GetUsernameError
impl RefUnwindSafe for GetUsernameError
impl Send for GetUsernameError
impl Sync for GetUsernameError
impl Unpin for GetUsernameError
impl UnwindSafe for GetUsernameError
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