pub trait PayloadSet: Sync + Send + 'static {
    fn next(&mut self) -> Option<&Payload>;
}
Expand description

A type providing access to a complete payload set.

Required methods

Returns the next element in the payload set.

Implementors