Trait Checkpoint

Source
pub trait Checkpoint {
    // Required methods
    fn devices(&self) -> Result<Vec<Path<'static>>, Error>;
    fn created(&self) -> Result<i64, Error>;
    fn rollback_timeout(&self) -> Result<u32, Error>;
}

Required Methods§

Source

fn devices(&self) -> Result<Vec<Path<'static>>, Error>

Source

fn created(&self) -> Result<i64, Error>

Source

fn rollback_timeout(&self) -> Result<u32, Error>

Implementations on Foreign Types§

Source§

impl<'a, T: BlockingSender, C: Deref<Target = T>> Checkpoint for Proxy<'a, C>

Implementors§