Trait breadthread::Directive[][src]

pub trait Directive: Send + 'static {
    type Pointers: IntoIterator<Item = (NonZeroUsize, usize)>;
    fn pointers(&self) -> Self::Pointers;
}
Expand description

Represents a directive that can be sent to a bread thread.

Associated Types

The type that contains the pointers, along with a usize that uniquely identifies the type of the pointer.

Required methods

Get a list of pointers contained within this directive.

Implementors