PartitionError

Trait PartitionError 

Source
pub trait PartitionError: Debug {
    // Required methods
    fn unexpected_eop() -> Self;
    fn cluster_not_found(cluster: u32) -> Self;
}

Required Methods§

Source

fn unexpected_eop() -> Self

Source

fn cluster_not_found(cluster: u32) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl PartitionError for Error

Source§

fn unexpected_eop() -> Self

Source§

fn cluster_not_found(cluster: u32) -> Self

Implementors§