pub enum DaemonRunDirError {
RelativeDataHome {
data_home: PathBuf,
},
}Expand description
Why the daemon run directory could not be resolved.
Variants§
RelativeDataHome
The data home resolved to a relative path, which would place the run directory under whatever directory the process was started from.
Trait Implementations§
Source§impl Clone for DaemonRunDirError
impl Clone for DaemonRunDirError
Source§impl Debug for DaemonRunDirError
impl Debug for DaemonRunDirError
Source§impl Display for DaemonRunDirError
impl Display for DaemonRunDirError
impl Eq for DaemonRunDirError
Source§impl Error for DaemonRunDirError
impl Error for DaemonRunDirError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for DaemonRunDirError
impl PartialEq for DaemonRunDirError
impl StructuralPartialEq for DaemonRunDirError
Auto Trait Implementations§
impl Freeze for DaemonRunDirError
impl RefUnwindSafe for DaemonRunDirError
impl Send for DaemonRunDirError
impl Sync for DaemonRunDirError
impl Unpin for DaemonRunDirError
impl UnsafeUnpin for DaemonRunDirError
impl UnwindSafe for DaemonRunDirError
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