[][src]Struct rusoto_medialive::VideoSelector

pub struct VideoSelector {
    pub color_space: Option<String>,
    pub color_space_usage: Option<String>,
    pub selector_settings: Option<VideoSelectorSettings>,
}

Specifies a particular video stream within an input source. An input may have only a single video selector.

Fields

color_space: Option<String>

Specifies the colorspace of an input. This setting works in tandem with colorSpaceConversion to determine if any conversion will be performed.

color_space_usage: Option<String>

Applies only if colorSpace is a value other than follow. This field controls how the value in the colorSpace field will be used. fallback means that when the input does include color space data, that data will be used, but when the input has no color space data, the value in colorSpace will be used. Choose fallback if your input is sometimes missing color space data, but when it does have color space data, that data is correct. force means to always use the value in colorSpace. Choose force if your input usually has no color space data or might have unreliable color space data.

selector_settings: Option<VideoSelectorSettings>

The video selector settings.

Trait Implementations

impl PartialEq<VideoSelector> for VideoSelector[src]

impl Default for VideoSelector[src]

impl Clone for VideoSelector[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for VideoSelector[src]

impl Serialize for VideoSelector[src]

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

Auto Trait Implementations

impl Send for VideoSelector

impl Sync for VideoSelector

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self