Skip to main content

BlockstoreWriteOpsSubscribable

Trait BlockstoreWriteOpsSubscribable 

Source
pub trait BlockstoreWriteOpsSubscribable {
    // Required methods
    fn subscribe_write_ops(&self) -> Result<Receiver<Vec<(Cid, Bytes)>>>;
    fn unsubscribe_write_ops(&self);
}

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<'a, T: 'a + BlockstoreWriteOpsSubscribable + ?Sized> BlockstoreWriteOpsSubscribable for &'a T

Implementors§