Enum biscuit::jwe::CompressionAlgorithm [] [src]

pub enum CompressionAlgorithm {
    Deflate,
    Other(String),
}

Compression algorithm applied to plaintext before encryption.

Variants

DEFLATE algorithm defined in RFC 1951

Other user-defined algorithm

Trait Implementations

impl Debug for CompressionAlgorithm
[src]

Formats the value using the given formatter.

impl Eq for CompressionAlgorithm
[src]

impl PartialEq for CompressionAlgorithm
[src]

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

This method tests for !=.

impl Clone for CompressionAlgorithm
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Serialize for CompressionAlgorithm
[src]

Serialize this value into the given Serde serializer. Read more

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

Deserialize this value from the given Serde deserializer. Read more