[][src]Struct rusoto_medialive::InputDeviceHdSettings

pub struct InputDeviceHdSettings {
    pub active_input: Option<String>,
    pub configured_input: Option<String>,
    pub device_state: Option<String>,
    pub framerate: Option<f64>,
    pub height: Option<i64>,
    pub max_bitrate: Option<i64>,
    pub scan_type: Option<String>,
    pub width: Option<i64>,
}

Settings that describe the active source from the input device, and the video characteristics of that source.

Fields

active_input: Option<String>

If you specified Auto as the configured input, specifies which of the sources is currently active (SDI or HDMI).

configured_input: Option<String>

The source at the input device that is currently active. You can specify this source.

device_state: Option<String>

The state of the input device.

framerate: Option<f64>

The frame rate of the video source.

height: Option<i64>

The height of the video source, in pixels.

max_bitrate: Option<i64>

The current maximum bitrate for ingesting this source, in bits per second. You can specify this maximum.

scan_type: Option<String>

The scan type of the video source.

width: Option<i64>

The width of the video source, in pixels.

Trait Implementations

impl Clone for InputDeviceHdSettings[src]

impl Debug for InputDeviceHdSettings[src]

impl Default for InputDeviceHdSettings[src]

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

impl PartialEq<InputDeviceHdSettings> for InputDeviceHdSettings[src]

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

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.