Enum scte35_reader::EncryptionAlgorithm [] [src]

pub enum EncryptionAlgorithm {
    None,
    DesEcb,
    DesCbc,
    TripleDesEde3Ecb,
    Reserved(u8),
    Private(u8),
}

Variants

Methods

impl EncryptionAlgorithm
[src]

Trait Implementations

impl Debug for EncryptionAlgorithm
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for EncryptionAlgorithm
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations