[][src]Struct body_image::Tunables

pub struct Tunables { /* fields omitted */ }

A collection of size limits and performance tuning constants. Setters are available via Tuner

Methods

impl Tunables[src]

pub fn new() -> Tunables[src]

Construct with default values.

pub fn max_body_ram(&self) -> u64[src]

Return the maximum body size in bytes allowed in RAM, e.g. before writing to a temporary file, or memory mapping instead of direct, bulk read. Default: 192 KiB.

pub fn max_body(&self) -> u64[src]

Return the maximum body size in bytes allowed in any form (RAM or file). Default: 1 GiB.

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

Return the buffer size in bytes to use when buffering to RAM. Default: 8 KiB.

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

Return the buffer size in bytes to use when buffering to/from the file-system. Default: 64 KiB.

pub fn size_estimate_deflate(&self) -> u16[src]

Return the size estimate, as an integer multiple of the encoded buffer size, for the deflate compression algorithm. Default: 4.

pub fn size_estimate_gzip(&self) -> u16[src]

Return the size estimate, as an integer multiple of the encoded buffer size, for the gzip compression algorithm. Default: 5.

pub fn size_estimate_brotli(&self) -> u16[src]

Return the size estimate, as an integer multiple of the encoded buffer size, for the Brotli compression algorithm. Default: 6.

pub fn temp_dir(&self) -> &Path[src]

Return the directory path in which to write temporary (BodyImage) files. Default: std::env::temp_dir()

pub fn res_timeout(&self) -> Option<Duration>[src]

Return the maximum initial response timeout interval. Default: None (e.g. unset)

pub fn body_timeout(&self) -> Option<Duration>[src]

Return the maximum streaming body timeout interval. Default: 60 seconds

Trait Implementations

impl Default for Tunables[src]

impl Clone for Tunables[src]

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

Performs copy-assignment from source. Read more

impl Debug for Tunables[src]

Auto Trait Implementations

impl Send for Tunables

impl Sync for Tunables

Blanket Implementations

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> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?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

The type returned in the event of a conversion error.

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