Enum gapi_grpc::google::cloud::video::transcoder::v1beta1::encryption::EncryptionMode[][src]

pub enum EncryptionMode {
    Aes128(Aes128Encryption),
    SampleAes(SampleAesEncryption),
    MpegCenc(MpegCommonEncryption),
}

Encryption mode can be either aes or cenc.

Variants

Aes128(Aes128Encryption)

Configuration for AES-128 encryption.

SampleAes(SampleAesEncryption)

Configuration for SAMPLE-AES encryption.

MpegCenc(MpegCommonEncryption)

Configuration for MPEG Common Encryption (MPEG-CENC).

Implementations

impl EncryptionMode[src]

pub fn encode<B>(&self, buf: &mut B) where
    B: BufMut
[src]

pub fn merge<B>(
    field: &mut Option<EncryptionMode>,
    tag: u32,
    wire_type: WireType,
    buf: &mut B,
    ctx: DecodeContext
) -> Result<(), DecodeError> where
    B: Buf
[src]

pub fn encoded_len(&self) -> usize[src]

Trait Implementations

impl Clone for EncryptionMode[src]

impl Debug for EncryptionMode[src]

impl PartialEq<EncryptionMode> for EncryptionMode[src]

impl StructuralPartialEq for EncryptionMode[src]

Auto Trait Implementations

impl RefUnwindSafe for EncryptionMode

impl Send for EncryptionMode

impl Sync for EncryptionMode

impl Unpin for EncryptionMode

impl UnwindSafe for EncryptionMode

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> 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> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]