pub enum GetUserByOtherIdError {
UserNotFound(UserNotFound),
Other,
}Expand description
Ошибки при получении информации о пользователе по other_id
Variants§
Trait Implementations§
Source§impl Clone for GetUserByOtherIdError
impl Clone for GetUserByOtherIdError
Source§fn clone(&self) -> GetUserByOtherIdError
fn clone(&self) -> GetUserByOtherIdError
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 GetUserByOtherIdError
impl Debug for GetUserByOtherIdError
Source§impl<'de> Deserialize<'de> for GetUserByOtherIdError
impl<'de> Deserialize<'de> for GetUserByOtherIdError
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 GetUserByOtherIdError
impl RefUnwindSafe for GetUserByOtherIdError
impl Send for GetUserByOtherIdError
impl Sync for GetUserByOtherIdError
impl Unpin for GetUserByOtherIdError
impl UnwindSafe for GetUserByOtherIdError
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