Struct hls_m3u8::types::DecryptionKey[][src]

pub struct DecryptionKey {
    pub method: EncryptionMethod,
    pub uri: QuotedString,
    pub iv: Option<InitializationVector>,
    pub key_format: Option<QuotedString>,
    pub key_format_versions: Option<QuotedString>,
}

Decryption key.

See: 4.3.2.4. EXT-X-KEY

Fields

Trait Implementations

impl Debug for DecryptionKey
[src]

Formats the value using the given formatter. Read more

impl Clone for DecryptionKey
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DecryptionKey
[src]

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

This method tests for !=.

impl Eq for DecryptionKey
[src]

impl Hash for DecryptionKey
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Display for DecryptionKey
[src]

Formats the value using the given formatter. Read more

impl FromStr for DecryptionKey
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Auto Trait Implementations