pub struct AnyTlsProxy {
pub password: String,
pub alpn: Option<HashSet<String>>,
pub sni: Option<String>,
pub skip_cert_verify: Option<bool>,
pub fingerprint: Option<String>,
pub client_fingerprint: Option<String>,
pub udp: Option<bool>,
pub idle_session_check_interval: Option<i32>,
pub idle_session_timeout: Option<i32>,
pub min_idle_session: Option<i32>,
pub tfo: Option<bool>,
}Expand description
Represents the AnyTLS proxy details
Fields§
§password: String§alpn: Option<HashSet<String>>§sni: Option<String>§skip_cert_verify: Option<bool>§fingerprint: Option<String>§client_fingerprint: Option<String>§udp: Option<bool>§idle_session_check_interval: Option<i32>§idle_session_timeout: Option<i32>§min_idle_session: Option<i32>§tfo: Option<bool>Trait Implementations§
Source§impl Clone for AnyTlsProxy
impl Clone for AnyTlsProxy
Source§fn clone(&self) -> AnyTlsProxy
fn clone(&self) -> AnyTlsProxy
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 AnyTlsProxy
impl Debug for AnyTlsProxy
Source§impl Default for AnyTlsProxy
impl Default for AnyTlsProxy
Source§fn default() -> AnyTlsProxy
fn default() -> AnyTlsProxy
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnyTlsProxy
impl<'de> Deserialize<'de> for AnyTlsProxy
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 AnyTlsProxy
impl RefUnwindSafe for AnyTlsProxy
impl Send for AnyTlsProxy
impl Sync for AnyTlsProxy
impl Unpin for AnyTlsProxy
impl UnwindSafe for AnyTlsProxy
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