pub trait ContentStore:
Send
+ Sync
+ 'static {
// Required method
fn get(&self, hash_hex: &str) -> Result<Option<Vec<u8>>>;
}Expand description
Content store trait stub
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".