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