pub struct TcpProxyConfig {
pub name: String,
pub listen: String,
pub backends: Vec<String>,
pub connect_timeout_ms: u64,
}Fields§
§name: String§listen: String§backends: Vec<String>§connect_timeout_ms: u64Trait Implementations§
Source§impl Clone for TcpProxyConfig
impl Clone for TcpProxyConfig
Source§fn clone(&self) -> TcpProxyConfig
fn clone(&self) -> TcpProxyConfig
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 TcpProxyConfig
impl RefUnwindSafe for TcpProxyConfig
impl Send for TcpProxyConfig
impl Sync for TcpProxyConfig
impl Unpin for TcpProxyConfig
impl UnsafeUnpin for TcpProxyConfig
impl UnwindSafe for TcpProxyConfig
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