JournalStore

Trait JournalStore 

pub trait JournalStore:
    JournalSink
    + Read
    + Seek {
    // Required method
    fn truncate_to(&mut self, len: u64) -> Result<()>;
}

Required Methods§

fn truncate_to(&mut self, len: u64) -> Result<()>

Implementations on Foreign Types§

§

impl JournalStore for File

§

fn truncate_to(&mut self, len: u64) -> Result<()>

§

impl JournalStore for Cursor<Vec<u8>>

§

fn truncate_to(&mut self, len: u64) -> Result<()>

Implementors§