pub struct HttpServerOptionsConfig {
pub keepalive_request_limit: Option<u32>,
pub h2c: bool,
pub allow_connect_method_proxying: bool,
}Fields§
§keepalive_request_limit: Option<u32>§h2c: bool§allow_connect_method_proxying: boolTrait Implementations§
Source§impl Clone for HttpServerOptionsConfig
impl Clone for HttpServerOptionsConfig
Source§fn clone(&self) -> HttpServerOptionsConfig
fn clone(&self) -> HttpServerOptionsConfig
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 HttpServerOptionsConfig
impl Debug for HttpServerOptionsConfig
Source§impl Default for HttpServerOptionsConfig
impl Default for HttpServerOptionsConfig
Source§fn default() -> HttpServerOptionsConfig
fn default() -> HttpServerOptionsConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HttpServerOptionsConfig
impl<'de> Deserialize<'de> for HttpServerOptionsConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HttpServerOptionsConfig
impl RefUnwindSafe for HttpServerOptionsConfig
impl Send for HttpServerOptionsConfig
impl Sync for HttpServerOptionsConfig
impl Unpin for HttpServerOptionsConfig
impl UnsafeUnpin for HttpServerOptionsConfig
impl UnwindSafe for HttpServerOptionsConfig
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