pub struct Options<S: SuffixGenerator> {
pub suffix: S,
}Expand description
Options to control behavior when creating instance
Fields§
§suffix: SMethod to generate socket name to bind to.
When not used, it uses static counter
Auto Trait Implementations§
impl<S> Freeze for Options<S>where
S: Freeze,
impl<S> RefUnwindSafe for Options<S>where
S: RefUnwindSafe,
impl<S> Send for Options<S>where
S: Send,
impl<S> Sync for Options<S>where
S: Sync,
impl<S> Unpin for Options<S>where
S: Unpin,
impl<S> UnwindSafe for Options<S>where
S: UnwindSafe,
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