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§
Source§impl UserType
impl UserType
pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self>
pub fn is_bot(&self) -> bool
pub fn is_deleted(&self) -> bool
pub fn is_regular(&self) -> bool
pub fn is_unknown(&self) -> bool
pub fn on_bot<F: FnOnce(&UserTypeBot)>(&self, fnc: F) -> &Self
pub fn on_deleted<F: FnOnce(&UserTypeDeleted)>(&self, fnc: F) -> &Self
pub fn on_regular<F: FnOnce(&UserTypeRegular)>(&self, fnc: F) -> &Self
pub fn on_unknown<F: FnOnce(&UserTypeUnknown)>(&self, fnc: F) -> &Self
pub fn as_bot(&self) -> Option<&UserTypeBot>
pub fn as_deleted(&self) -> Option<&UserTypeDeleted>
pub fn as_regular(&self) -> Option<&UserTypeRegular>
pub fn as_unknown(&self) -> Option<&UserTypeUnknown>
pub fn bot<T: AsRef<UserTypeBot>>(t: T) -> Self
pub fn deleted<T: AsRef<UserTypeDeleted>>(t: T) -> Self
pub fn regular<T: AsRef<UserTypeRegular>>(t: T) -> Self
pub fn unknown<T: AsRef<UserTypeUnknown>>(t: T) -> Self
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UserType
impl<'de> Deserialize<'de> for UserType
Source§fn deserialize<D>(deserializer: D) -> Result<UserType, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<UserType, 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