[][src]Struct rusoto_mediaconvert::Rectangle

pub struct Rectangle {
    pub height: Option<i64>,
    pub width: Option<i64>,
    pub x: Option<i64>,
    pub y: Option<i64>,
}

Use Rectangle to identify a specific area of the video frame.

Fields

height: Option<i64>

Height of rectangle in pixels. Specify only even numbers.

width: Option<i64>

Width of rectangle in pixels. Specify only even numbers.

x: Option<i64>

The distance, in pixels, between the rectangle and the left edge of the video frame. Specify only even numbers.

y: Option<i64>

The distance, in pixels, between the rectangle and the top edge of the video frame. Specify only even numbers.

Trait Implementations

impl Clone for Rectangle[src]

impl Debug for Rectangle[src]

impl Default for Rectangle[src]

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

impl PartialEq<Rectangle> for Rectangle[src]

impl Serialize for Rectangle[src]

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