Skip to main content

QueueWriteFactory

Trait QueueWriteFactory 

Source
pub trait QueueWriteFactory<E: Element>: QueueBase<E> {
    type Writer: QueueWriter<E>;

    // Required method
    fn writer(&self) -> Self::Writer;
}

Required Associated Types§

Required Methods§

Source

fn writer(&self) -> Self::Writer

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§