pub enum MMapMetaSubscriber<'a, SlotType: 'a + Debug> {
Dynamic(MMapMetaDynamicSubscriber<'a, SlotType>),
Fixed(MMapMetaFixedSubscriber<'a, SlotType>),
}Expand description
Enclosing type for subscribers of old and new events
Variants§
Dynamic(MMapMetaDynamicSubscriber<'a, SlotType>)
See [MMapMetaDynamicSubscriber<>]
Fixed(MMapMetaFixedSubscriber<'a, SlotType>)
See [MMapMetaFixedSubscriber<>]
Implementations§
source§impl<'a, SlotType: 'a + Debug> MMapMetaSubscriber<'a, SlotType>
impl<'a, SlotType: 'a + Debug> MMapMetaSubscriber<'a, SlotType>
pub fn remaining_elements_count(&self) -> usize
Auto Trait Implementations§
impl<'a, SlotType> RefUnwindSafe for MMapMetaSubscriber<'a, SlotType>where SlotType: RefUnwindSafe,
impl<'a, SlotType> Send for MMapMetaSubscriber<'a, SlotType>where SlotType: Send + Sync,
impl<'a, SlotType> Sync for MMapMetaSubscriber<'a, SlotType>where SlotType: Send + Sync,
impl<'a, SlotType> Unpin for MMapMetaSubscriber<'a, SlotType>
impl<'a, SlotType> !UnwindSafe for MMapMetaSubscriber<'a, SlotType>
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