pub struct DaemonPaths {
pub state_dir: Arc<Path>,
pub log_dir: Arc<Path>,
}Fields§
§state_dir: Arc<Path>Where the lock/pid files should be written to (is created if missing).
log_dir: Arc<Path>Where the log files should be written to (is created if missing).
Trait Implementations§
Source§impl Clone for DaemonPaths
impl Clone for DaemonPaths
Source§fn clone(&self) -> DaemonPaths
fn clone(&self) -> DaemonPaths
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DaemonPaths
impl Debug for DaemonPaths
Source§impl PartialEq for DaemonPaths
impl PartialEq for DaemonPaths
impl Eq for DaemonPaths
impl StructuralPartialEq for DaemonPaths
Auto Trait Implementations§
impl Freeze for DaemonPaths
impl RefUnwindSafe for DaemonPaths
impl Send for DaemonPaths
impl Sync for DaemonPaths
impl Unpin for DaemonPaths
impl UnwindSafe for DaemonPaths
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