pub struct DaemonHandle {
pub socket_path: PathBuf,
/* private fields */
}Expand description
Handle returned by Daemon::start — holds the socket path and shutdown trigger.
Fields§
§socket_path: PathBufThe Unix domain socket path the daemon is listening on.
Implementations§
Auto Trait Implementations§
impl Freeze for DaemonHandle
impl RefUnwindSafe for DaemonHandle
impl Send for DaemonHandle
impl Sync for DaemonHandle
impl Unpin for DaemonHandle
impl UnsafeUnpin for DaemonHandle
impl UnwindSafe for DaemonHandle
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