TransactionalRingBufferChanges

Trait TransactionalRingBufferChanges 

Source
pub trait TransactionalRingBufferChanges {
    // Required methods
    fn find_ring_buffer(&self, id: RingBufferId) -> Option<&RingBufferDef>;
    fn find_ring_buffer_by_name<'a>(
        &self,
        namespace: NamespaceId,
        name: impl IntoFragment<'a>,
    ) -> Option<&RingBufferDef>;
    fn is_ring_buffer_deleted(&self, id: RingBufferId) -> bool;
    fn is_ring_buffer_deleted_by_name<'a>(
        &self,
        namespace: NamespaceId,
        name: impl IntoFragment<'a>,
    ) -> bool;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§