[][src]Struct twitchchat::messages::HostTarget

pub struct HostTarget<'t> {
    pub source: Cow<'t, str>,
    pub viewers: Option<usize>,
    pub kind: HostTargetKind<'t>,
}

When a channel starts to host another channel

Fields

source: Cow<'t, str>

Source channel (the one doing the hosting).

viewers: Option<usize>

How many viewers are going along

kind: HostTargetKind<'t>

What kind of event this was. e.g. Start or End

Trait Implementations

impl<'t> AsOwned for HostTarget<'t>[src]

type Owned = HostTarget<'static>

The owned type

impl<'t> Clone for HostTarget<'t>[src]

impl<'t> Debug for HostTarget<'t>[src]

impl<'de, 't> Deserialize<'de> for HostTarget<'t>[src]

impl<'t> From<HostTarget<'t>> for AllCommands<'t>[src]

impl<'a: 't, 't> Parse<&'a Message<'t>> for HostTarget<'t>[src]

impl<'t> PartialEq<HostTarget<'t>> for HostTarget<'t>[src]

impl<'t> Serialize for HostTarget<'t>[src]

impl<'t> StructuralPartialEq for HostTarget<'t>[src]

Auto Trait Implementations

impl<'t> RefUnwindSafe for HostTarget<'t>

impl<'t> Send for HostTarget<'t>

impl<'t> Sync for HostTarget<'t>

impl<'t> Unpin for HostTarget<'t>

impl<'t> UnwindSafe for HostTarget<'t>

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.