pub enum UserType {
Bot(UserTypeBot),
Deleted(UserTypeDeleted),
Regular(UserTypeRegular),
Unknown(UserTypeUnknown),
// some variants omitted
}
Expand description
Represents the type of a user. The following types are possible: regular users, deleted users and bots
Variants§
Bot(UserTypeBot)
A bot (see https://core.telegram.org/bots)
Deleted(UserTypeDeleted)
A deleted user or deleted bot. No information on the user besides the user identifier is available. It is not possible to perform any active actions on this type of user
Regular(UserTypeRegular)
A regular user
Unknown(UserTypeUnknown)
No information on the user besides the user identifier is available, yet this user has not been deleted. This object is extremely rare and must be handled like a deleted user. It is not possible to perform any actions on users of this type
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UserType
impl<'de> Deserialize<'de> for UserType
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 UserType
impl RefUnwindSafe for UserType
impl Send for UserType
impl Sync for UserType
impl Unpin for UserType
impl UnwindSafe for UserType
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