[][src]Enum atm::storage::PartitionPathGeneratorError

pub enum PartitionPathGeneratorError {
    MelodyLengthMismatch {
        expected: u32,
        observed: u32,
    },
    PartitionDepthLongerThanMelody {
        partition_depth: u32,
        melody_length: u32,
    },
    PartitionsLongerThanMelody {
        melody_length: u32,
        partition_depth: u32,
        partition_length: u32,
    },
}

Error type for PartitionPathGenerator

Variants

MelodyLengthMismatch

Fields of MelodyLengthMismatch

expected: u32observed: u32
PartitionDepthLongerThanMelody

Fields of PartitionDepthLongerThanMelody

partition_depth: u32melody_length: u32
PartitionsLongerThanMelody

Fields of PartitionsLongerThanMelody

melody_length: u32partition_depth: u32partition_length: u32

Trait Implementations

impl Debug for PartitionPathGeneratorError[src]

impl Display for PartitionPathGeneratorError[src]

impl Error for PartitionPathGeneratorError[src]

impl From<PartitionPathGeneratorError> for PathGeneratorError[src]

Auto Trait Implementations

impl RefUnwindSafe for PartitionPathGeneratorError

impl Send for PartitionPathGeneratorError

impl Sync for PartitionPathGeneratorError

impl Unpin for PartitionPathGeneratorError

impl UnwindSafe for PartitionPathGeneratorError

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> 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.