pub struct NetworkProxyNetwork {
pub secure: bool,
pub host: String,
pub port: u16,
pub listen_all_interfaces: bool,
pub allow_insecure: bool,
pub insecure_port: u16,
}
Fields§
§secure: bool
§host: String
§port: u16
§listen_all_interfaces: bool
§allow_insecure: bool
§insecure_port: u16
Trait Implementations§
Source§impl Clone for NetworkProxyNetwork
impl Clone for NetworkProxyNetwork
Source§fn clone(&self) -> NetworkProxyNetwork
fn clone(&self) -> NetworkProxyNetwork
Returns a copy 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 NetworkProxyNetwork
impl Debug for NetworkProxyNetwork
Source§impl Default for NetworkProxyNetwork
impl Default for NetworkProxyNetwork
Source§fn default() -> NetworkProxyNetwork
fn default() -> NetworkProxyNetwork
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NetworkProxyNetwork
impl<'de> Deserialize<'de> for NetworkProxyNetwork
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 NetworkProxyNetwork
impl RefUnwindSafe for NetworkProxyNetwork
impl Send for NetworkProxyNetwork
impl Sync for NetworkProxyNetwork
impl Unpin for NetworkProxyNetwork
impl UnwindSafe for NetworkProxyNetwork
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