pub enum AutoSizedEvent {
Xs(PooledEvent<64>),
S(PooledEvent<256>),
M(PooledEvent<1024>),
L(PooledEvent<4096>),
Xl(PooledEvent<16384>),
}Expand description
Auto-sized event wrapper for convenience
Variants§
Xs(PooledEvent<64>)
S(PooledEvent<256>)
M(PooledEvent<1024>)
L(PooledEvent<4096>)
Xl(PooledEvent<16384>)
Implementations§
Trait Implementations§
Source§impl Clone for AutoSizedEvent
impl Clone for AutoSizedEvent
Source§fn clone(&self) -> AutoSizedEvent
fn clone(&self) -> AutoSizedEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AutoSizedEvent
impl RefUnwindSafe for AutoSizedEvent
impl Send for AutoSizedEvent
impl Sync for AutoSizedEvent
impl Unpin for AutoSizedEvent
impl UnsafeUnpin for AutoSizedEvent
impl UnwindSafe for AutoSizedEvent
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