pub trait WithOffset {
    // Required method
    fn offset(&self) -> Offset;
}
Expand description

Implemented by structures that can return an offset.

Required Methods§

source

fn offset(&self) -> Offset

Implementors§

impl<E> WithOffset for EventEnvelope<E>

impl<E> WithOffset for Envelope<E>