[][src]Enum rust_tdlib::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]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,