pub enum ObnamServerError {
Port,
ChunksDir(Error),
TempDir(Error),
WriteConfig(PathBuf, Error),
Tls(TlsError),
WriteTls(PathBuf, Error),
Daemon(DaemonError),
}Variants§
Port
ChunksDir(Error)
TempDir(Error)
WriteConfig(PathBuf, Error)
Tls(TlsError)
WriteTls(PathBuf, Error)
Daemon(DaemonError)
Trait Implementations§
Source§impl Debug for ObnamServerError
impl Debug for ObnamServerError
Source§impl Display for ObnamServerError
impl Display for ObnamServerError
Source§impl Error for ObnamServerError
impl Error for ObnamServerError
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 From<ObnamServerError> for SuiteError
impl From<ObnamServerError> for SuiteError
Source§fn from(source: ObnamServerError) -> Self
fn from(source: ObnamServerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ObnamServerError
impl !RefUnwindSafe for ObnamServerError
impl Send for ObnamServerError
impl Sync for ObnamServerError
impl Unpin for ObnamServerError
impl !UnwindSafe for ObnamServerError
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