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§
Sourcefn store_zip_exists(&self) -> bool
fn store_zip_exists(&self) -> bool
Returns true if store.zip exists.
Sourcefn run_log_exists(&self) -> bool
fn run_log_exists(&self) -> bool
Returns true if run.log.zst exists.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".