pub enum CloneError {
FileCount(FileCountError),
OOM(OOMError),
}
Available on
Linux
only.Variants§
FileCount(FileCountError)
OOM(OOMError)
Trait Implementations§
Source§impl Clone for CloneError
impl Clone for CloneError
Source§fn clone(&self) -> CloneError
fn clone(&self) -> CloneError
Returns a duplicate 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 CloneError
impl Debug for CloneError
Source§impl Display for CloneError
impl Display for CloneError
Source§impl Error for CloneError
impl Error for CloneError
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<FileCountError> for CloneError
impl From<FileCountError> for CloneError
Source§fn from(value: FileCountError) -> Self
fn from(value: FileCountError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CloneError
impl RefUnwindSafe for CloneError
impl Send for CloneError
impl Sync for CloneError
impl Unpin for CloneError
impl UnwindSafe for CloneError
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