Struct easyfix_session::messages_storage::NullStorage
source · pub struct NullStorage { /* private fields */ }Implementations§
source§impl NullStorage
impl NullStorage
pub fn new() -> NullStorage
Trait Implementations§
source§impl Default for NullStorage
impl Default for NullStorage
source§fn default() -> NullStorage
fn default() -> NullStorage
Returns the “default value” for a type. Read more
source§impl MessagesStorage for NullStorage
impl MessagesStorage for NullStorage
fn fetch_range(&mut self, _range: RangeInclusive<SeqNum>) -> Vec<Vec<u8>>
fn store(&mut self, _seq_num: SeqNum, _data: &[u8])
fn next_sender_msg_seq_num(&self) -> SeqNum
fn next_target_msg_seq_num(&self) -> SeqNum
fn set_next_sender_msg_seq_num(&mut self, seq_num: SeqNum)
fn set_next_target_msg_seq_num(&mut self, seq_num: SeqNum)
fn incr_next_sender_msg_seq_num(&mut self)
fn incr_next_target_msg_seq_num(&mut self)
fn reset(&mut self)
Auto Trait Implementations§
impl RefUnwindSafe for NullStorage
impl Send for NullStorage
impl Sync for NullStorage
impl Unpin for NullStorage
impl UnwindSafe for NullStorage
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more