pub struct WsProxyConfig {
pub name: String,
pub listen: String,
pub backends: Vec<String>,
pub connect_timeout_ms: u64,
pub read_timeout_ms: u64,
}Fields§
§name: String§listen: String§backends: Vec<String>§connect_timeout_ms: u64§read_timeout_ms: u64Trait Implementations§
Source§impl Clone for WsProxyConfig
impl Clone for WsProxyConfig
Source§fn clone(&self) -> WsProxyConfig
fn clone(&self) -> WsProxyConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for WsProxyConfig
impl RefUnwindSafe for WsProxyConfig
impl Send for WsProxyConfig
impl Sync for WsProxyConfig
impl Unpin for WsProxyConfig
impl UnsafeUnpin for WsProxyConfig
impl UnwindSafe for WsProxyConfig
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