pub trait AsEvent: Sealed {
    // Required method
    fn as_event(&mut self) -> FixEvent<'_>;
}
Expand description

This trait is sealed and not meant to be implemented outside of the current crate.

Required Methods§

source

fn as_event(&mut self) -> FixEvent<'_>

Implementors§