pub enum ReflinkSupport {
Supported,
NotSupported,
Unknown,
}
Expand description
Enum indicating the reflink support status.
Variants§
Supported
Reflink is supported.
NotSupported
Reflink is not supported.
Unknown
Reflink support is unconfirmed.
Trait Implementations§
Source§impl Debug for ReflinkSupport
impl Debug for ReflinkSupport
Source§impl PartialEq for ReflinkSupport
impl PartialEq for ReflinkSupport
impl Eq for ReflinkSupport
impl StructuralPartialEq for ReflinkSupport
Auto Trait Implementations§
impl Freeze for ReflinkSupport
impl RefUnwindSafe for ReflinkSupport
impl Send for ReflinkSupport
impl Sync for ReflinkSupport
impl Unpin for ReflinkSupport
impl UnwindSafe for ReflinkSupport
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