RunFilesExist

Trait RunFilesExist 

Source
pub trait RunFilesExist {
    // Required methods
    fn store_zip_exists(&self) -> bool;
    fn run_log_exists(&self) -> bool;
}
Expand description

Trait for checking whether required run files exist.

This abstracts over different storage backends.

Required Methods§

Source

fn store_zip_exists(&self) -> bool

Returns true if store.zip exists.

Source

fn run_log_exists(&self) -> bool

Returns true if run.log.zst exists.

Implementors§