[][src]Struct twilight_model::channel::PrivateChannel

pub struct PrivateChannel {
    pub id: ChannelId,
    pub last_message_id: Option<MessageId>,
    pub last_pin_timestamp: Option<String>,
    pub kind: ChannelType,
    pub recipients: Vec<User>,
}

Fields

id: ChannelIdlast_message_id: Option<MessageId>last_pin_timestamp: Option<String>kind: ChannelTyperecipients: Vec<User>

Trait Implementations

impl Clone for PrivateChannel[src]

impl Debug for PrivateChannel[src]

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

impl Eq for PrivateChannel[src]

impl Hash for PrivateChannel[src]

impl PartialEq<PrivateChannel> for PrivateChannel[src]

impl Serialize for PrivateChannel[src]

impl StructuralEq for PrivateChannel[src]

impl StructuralPartialEq for PrivateChannel[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> Instrument 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.