[][src]Struct flif::Limits

pub struct Limits {
    pub metadata_chunk: u32,
    pub metadata_count: u32,
    pub pixels: u64,
    pub maniac_nodes: u32,
}

Limits on input images to prevent OOM based DoS

Fields

metadata_chunk: u32

max size of the compressed metadata in bytes (default: 1 MB)

metadata_count: u32

max number of metadata entries (default: 8)

pixels: u64

max number of pixels: width * height * frames (default: 67M = 226)

maniac_nodes: u32

max number of MANIAC nodes (default: 16384 = 214)

Trait Implementations

impl PartialEq<Limits> for Limits[src]

impl Default for Limits[src]

impl Clone for Limits[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for Limits[src]

impl Copy for Limits[src]

impl Debug for Limits[src]

Auto Trait Implementations

impl Send for Limits

impl Sync for Limits

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.