pub trait ChunkHas<const BODY_SIZE: usize = DEFAULT_BODY_SIZE>: Send + Sync {
// Required method
fn has(&self, address: &ChunkAddress) -> impl Future<Output = bool> + Send;
}Expand description
Async chunk existence check (primary API).
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".