Struct google_transcoder1_beta1::api::AnimationFade[][src]

pub struct AnimationFade {
    pub end_time_offset: Option<String>,
    pub fade_type: Option<String>,
    pub start_time_offset: Option<String>,
    pub xy: Option<NormalizedCoordinate>,
}

Display overlay object with fade animation.

This type is not used in any activity, and only used as part of another schema.

Fields

end_time_offset: Option<String>

The time to end the fade animation, in seconds. Default: start_time_offset + 1s

fade_type: Option<String>

Required. Type of fade animation: FADE_IN or FADE_OUT.

start_time_offset: Option<String>

The time to start the fade animation, in seconds. Default: 0

xy: Option<NormalizedCoordinate>

Normalized coordinates based on output video resolution. Valid values: 0.01.0. xy is the upper-left coordinate of the overlay object. For example, use the x and y coordinates {0,0} to position the top-left corner of the overlay animation in the top-left corner of the output video.

Trait Implementations

impl Clone for AnimationFade[src]

impl Debug for AnimationFade[src]

impl Default for AnimationFade[src]

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

impl Part for AnimationFade[src]

impl Serialize for AnimationFade[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> 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.