pub struct MachinePort {
pub end_port: Option<u16>,
pub force_https: Option<bool>,
pub handlers: Option<Vec<String>>,
pub http_options: Option<HttpOptions>,
pub proxy_proto_options: Option<ProxyProtoOptions>,
pub start_port: Option<u16>,
pub tls_options: Option<TlsOptions>,
}Fields§
§end_port: Option<u16>§force_https: Option<bool>§handlers: Option<Vec<String>>§http_options: Option<HttpOptions>§proxy_proto_options: Option<ProxyProtoOptions>§start_port: Option<u16>§tls_options: Option<TlsOptions>Trait Implementations§
Source§impl Debug for MachinePort
impl Debug for MachinePort
Source§impl<'de> Deserialize<'de> for MachinePort
impl<'de> Deserialize<'de> for MachinePort
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 MachinePort
impl RefUnwindSafe for MachinePort
impl Send for MachinePort
impl Sync for MachinePort
impl Unpin for MachinePort
impl UnwindSafe for MachinePort
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