pub struct Config { /* private fields */ }Implementations
sourceimpl Config
impl Config
sourcepub fn new(path: &str, name: &str) -> Self
pub fn new(path: &str, name: &str) -> Self
path - /path/to/socket (must end with .sock .socket or .ipc) or host:port, name - an unique client name
pub fn buf_size(self, size: usize) -> Self
pub fn buf_ttl(self, ttl: Duration) -> Self
pub fn queue_size(self, size: usize) -> Self
pub fn timeout(self, timeout: Duration) -> Self
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more