#[repr(u64)]pub(super) enum IncompatibleFeatures {
Dirty = 1,
Corrupt = 2,
ExternalDataFile = 4,
CompressionType = 8,
ExtendedL2Entries = 16,
}
Expand description
Incompatible feature bits.
Variants§
Trait Implementations§
Source§impl Clone for IncompatibleFeatures
impl Clone for IncompatibleFeatures
Source§fn clone(&self) -> IncompatibleFeatures
fn clone(&self) -> IncompatibleFeatures
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 IncompatibleFeatures
impl Debug for IncompatibleFeatures
Source§impl From<IncompatibleFeatures> for (FeatureType, u8)
impl From<IncompatibleFeatures> for (FeatureType, u8)
Source§fn from(feat: IncompatibleFeatures) -> (FeatureType, u8)
fn from(feat: IncompatibleFeatures) -> (FeatureType, u8)
Get this feature’s feature name table key.
Source§impl PartialEq for IncompatibleFeatures
impl PartialEq for IncompatibleFeatures
Source§impl TryFrom<u64> for IncompatibleFeatures
impl TryFrom<u64> for IncompatibleFeatures
impl Copy for IncompatibleFeatures
impl Eq for IncompatibleFeatures
impl StructuralPartialEq for IncompatibleFeatures
Auto Trait Implementations§
impl Freeze for IncompatibleFeatures
impl RefUnwindSafe for IncompatibleFeatures
impl Send for IncompatibleFeatures
impl Sync for IncompatibleFeatures
impl Unpin for IncompatibleFeatures
impl UnwindSafe for IncompatibleFeatures
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