Trait RandomAccess

Source
pub trait RandomAccess {
    // Required method
    fn new(file: File) -> Result<Self>
       where Self: Sized;
}
Expand description

Trait for structs that interact with random access files such as region files.

Required Methods§

Source

fn new(file: File) -> Result<Self>
where Self: Sized,

Implementors§