[][src]Struct rusoto_kinesisvideo::ChannelInfo

pub struct ChannelInfo {
    pub channel_arn: Option<String>,
    pub channel_name: Option<String>,
    pub channel_status: Option<String>,
    pub channel_type: Option<String>,
    pub creation_time: Option<f64>,
    pub single_master_configuration: Option<SingleMasterConfiguration>,
    pub version: Option<String>,
}

A structure that encapsulates a signaling channel's metadata and properties.

Fields

channel_arn: Option<String>

The Amazon Resource Name (ARN) of the signaling channel.

channel_name: Option<String>

The name of the signaling channel.

channel_status: Option<String>

Current status of the signaling channel.

channel_type: Option<String>

The type of the signaling channel.

creation_time: Option<f64>

The time at which the signaling channel was created.

single_master_configuration: Option<SingleMasterConfiguration>

A structure that contains the configuration for the SINGLE_MASTER channel type.

version: Option<String>

The current version of the signaling channel.

Trait Implementations

impl Clone for ChannelInfo[src]

impl Debug for ChannelInfo[src]

impl Default for ChannelInfo[src]

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

impl PartialEq<ChannelInfo> for ChannelInfo[src]

impl StructuralPartialEq for ChannelInfo[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> Same<T> for T

type Output = T

Should always be Self

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.