pub trait PartitionError: Debug {
// Required methods
fn unexpected_eop() -> Self;
fn cluster_not_found(cluster: u32) -> Self;
}Required Methods§
fn unexpected_eop() -> Self
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.