Struct google_transcoder1_beta1::api::Encryption[][src]

pub struct Encryption {
    pub aes128: Option<Aes128Encryption>,
    pub iv: Option<String>,
    pub key: Option<String>,
    pub mpeg_cenc: Option<MpegCommonEncryption>,
    pub sample_aes: Option<SampleAesEncryption>,
}

Encryption settings.

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

Fields

aes128: Option<Aes128Encryption>

Configuration for AES-128 encryption.

iv: Option<String>

Required. 128 bit Initialization Vector (IV) represented as lowercase hexadecimal digits.

key: Option<String>

Required. 128 bit encryption key represented as lowercase hexadecimal digits.

mpeg_cenc: Option<MpegCommonEncryption>

Configuration for MPEG Common Encryption (MPEG-CENC).

sample_aes: Option<SampleAesEncryption>

Configuration for SAMPLE-AES encryption.

Trait Implementations

impl Clone for Encryption[src]

impl Debug for Encryption[src]

impl Default for Encryption[src]

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

impl Part for Encryption[src]

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