pub struct EnableParams {
pub max_total_buffer_size: Option<i64>,
pub max_resource_buffer_size: Option<i64>,
pub max_post_data_size: Option<i64>,
}Expand description
Parameters for Network.enable.
Fields§
§max_total_buffer_size: Option<i64>Buffer size in bytes to use for storing network data.
max_resource_buffer_size: Option<i64>Per-resource buffer size in bytes.
max_post_data_size: Option<i64>Max post data size in bytes.
Trait Implementations§
Source§impl Clone for EnableParams
impl Clone for EnableParams
Source§fn clone(&self) -> EnableParams
fn clone(&self) -> EnableParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EnableParams
impl Debug for EnableParams
Source§impl Default for EnableParams
impl Default for EnableParams
Source§fn default() -> EnableParams
fn default() -> EnableParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EnableParams
impl RefUnwindSafe for EnableParams
impl Send for EnableParams
impl Sync for EnableParams
impl Unpin for EnableParams
impl UnwindSafe for EnableParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more