[][src]Enum rtdlib::types::NotificationGroupType

pub enum NotificationGroupType {
    Calls(NotificationGroupTypeCalls),
    Mentions(NotificationGroupTypeMentions),
    Messages(NotificationGroupTypeMessages),
    SecretChat(NotificationGroupTypeSecretChat),
    // some variants omitted
}

Describes the type of notifications in a notification group

Variants

A group containing notifications of type notificationTypeNewCall

A group containing notifications of type notificationTypeNewMessage and notificationTypeNewPushMessage with unread mentions of the current user, replies to their messages, or a pinned message

A group containing notifications of type notificationTypeNewMessage and notificationTypeNewPushMessage with ordinary unread messages

A group containing a notification of type notificationTypeNewSecretChat

Implementations

impl NotificationGroupType[src]

pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self>[src]

pub fn is_calls(&self) -> bool[src]

pub fn is_mentions(&self) -> bool[src]

pub fn is_messages(&self) -> bool[src]

pub fn is_secret_chat(&self) -> bool[src]

pub fn on_calls<F: FnOnce(&NotificationGroupTypeCalls)>(&self, fnc: F) -> &Self[src]

pub fn on_mentions<F: FnOnce(&NotificationGroupTypeMentions)>(
    &self,
    fnc: F
) -> &Self
[src]

pub fn on_messages<F: FnOnce(&NotificationGroupTypeMessages)>(
    &self,
    fnc: F
) -> &Self
[src]

pub fn on_secret_chat<F: FnOnce(&NotificationGroupTypeSecretChat)>(
    &self,
    fnc: F
) -> &Self
[src]

pub fn as_calls(&self) -> Option<&NotificationGroupTypeCalls>[src]

pub fn as_mentions(&self) -> Option<&NotificationGroupTypeMentions>[src]

pub fn as_messages(&self) -> Option<&NotificationGroupTypeMessages>[src]

pub fn as_secret_chat(&self) -> Option<&NotificationGroupTypeSecretChat>[src]

pub fn calls<T: AsRef<NotificationGroupTypeCalls>>(t: T) -> Self[src]

pub fn mentions<T: AsRef<NotificationGroupTypeMentions>>(t: T) -> Self[src]

pub fn messages<T: AsRef<NotificationGroupTypeMessages>>(t: T) -> Self[src]

pub fn secret_chat<T: AsRef<NotificationGroupTypeSecretChat>>(t: T) -> Self[src]

Trait Implementations

impl AsRef<NotificationGroupType> for NotificationGroupType[src]

impl Clone for NotificationGroupType[src]

impl Debug for NotificationGroupType[src]

impl Default for NotificationGroupType[src]

impl<'de> Deserialize<'de> for NotificationGroupType[src]

impl RObject for NotificationGroupType[src]

impl Serialize for NotificationGroupType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.