Tuner

Struct Tuner 

Source
pub struct Tuner { /* private fields */ }
Expand description

A builder for Tunables. Invariants are asserted in the various setters and finish.

Implementations§

Source§

impl Tuner

Source

pub fn new() -> Tuner

New Tuner with all Tunables defaults.

Source

pub fn set_max_body_ram(&mut self, size: u64) -> &mut Tuner

Set the maximum body size in bytes allowed in RAM.

Source

pub fn set_max_body(&mut self, size: u64) -> &mut Tuner

Set the maximum body size in bytes allowed in any form (RAM or file). This must be at least as large as max_body_ram, as asserted on finish.

Source

pub fn set_buffer_size_ram(&mut self, size: usize) -> &mut Tuner

Set the buffer size in bytes to use when buffering to RAM.

Source

pub fn set_buffer_size_fs(&mut self, size: usize) -> &mut Tuner

Set the buffer size in bytes to use when buffering to/from the file-system.

Source

pub fn set_size_estimate_deflate(&mut self, multiple: u16) -> &mut Tuner

Set the size estimate, as an integer multiple of the encoded buffer size, for the deflate compression algorithm.

Source

pub fn set_size_estimate_gzip(&mut self, multiple: u16) -> &mut Tuner

Set the size estimate, as an integer multiple of the encoded buffer size, for the gzip compression algorithm.

Source

pub fn set_size_estimate_brotli(&mut self, multiple: u16) -> &mut Tuner

Set the size estimate, as an integer multiple of the encoded buffer size, for the Brotli compression algorithm.

Source

pub fn set_temp_dir<P>(&mut self, path: P) -> &mut Tuner
where P: AsRef<Path>,

Set the path in which to write temporary files.

Source

pub fn finish(&self) -> Tunables

Finish building, asserting any remaining invariants, and return a new Tunables instance.

Trait Implementations§

Source§

impl Clone for Tuner

Source§

fn clone(&self) -> Tuner

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Default for Tuner

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl Freeze for Tuner

§

impl RefUnwindSafe for Tuner

§

impl Send for Tuner

§

impl Sync for Tuner

§

impl Unpin for Tuner

§

impl UnwindSafe for Tuner

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V