[][src]Enum libzetta::zfs::properties::RedundantMetadata

#[repr(u64)]pub enum RedundantMetadata {
    All,
    Most,
}

Controls what types of metadata are stored redundantly

Variants

All

ZFS stores an extra copy of all metadata. If a single on-disk block is corrupt, at worst a single block of user data (which is recordsize bytes long can be lost.)

Most

ZFS stores an extra copy of most types of metadata. This can improve performance of random writes, because less metadata must be written. In practice, at worst about 100 blocks (of recordsize bytes each) of user data can be lost if a single on-disk block is corrupt.

Trait Implementations

impl AsRef<str> for RedundantMetadata[src]

impl Clone for RedundantMetadata[src]

impl Copy for RedundantMetadata[src]

impl Debug for RedundantMetadata[src]

impl Default for RedundantMetadata[src]

impl Display for RedundantMetadata[src]

impl Eq for RedundantMetadata[src]

impl FromStr for RedundantMetadata[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl PartialEq<RedundantMetadata> for RedundantMetadata[src]

impl StructuralEq for RedundantMetadata[src]

impl StructuralPartialEq for RedundantMetadata[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.