Enum rust_tdlib::types::NotificationType
source · [−]pub enum NotificationType {
NewCall(NotificationTypeNewCall),
NewMessage(Box<NotificationTypeNewMessage>),
NewPushMessage(Box<NotificationTypeNewPushMessage>),
NewSecretChat(NotificationTypeNewSecretChat),
// some variants omitted
}
Expand description
Contains detailed information about a notification
Variants
NewCall(NotificationTypeNewCall)
New call was received
NewMessage(Box<NotificationTypeNewMessage>)
New message was received
NewPushMessage(Box<NotificationTypeNewPushMessage>)
New message was received through a push notification
NewSecretChat(NotificationTypeNewSecretChat)
New secret chat was created
Implementations
Trait Implementations
sourceimpl AsRef<NotificationType> for NotificationType
impl AsRef<NotificationType> for NotificationType
sourcefn as_ref(&self) -> &NotificationType
fn as_ref(&self) -> &NotificationType
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl Clone for NotificationType
impl Clone for NotificationType
sourcefn clone(&self) -> NotificationType
fn clone(&self) -> NotificationType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for NotificationType
impl Debug for NotificationType
sourceimpl Default for NotificationType
impl Default for NotificationType
sourceimpl<'de> Deserialize<'de> for NotificationType
impl<'de> Deserialize<'de> for NotificationType
sourcefn 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
sourceimpl Serialize for NotificationType
impl Serialize for NotificationType
Auto Trait Implementations
impl RefUnwindSafe for NotificationType
impl Send for NotificationType
impl Sync for NotificationType
impl Unpin for NotificationType
impl UnwindSafe for NotificationType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more