pub struct AuditProjection<E> {
pub capacity: usize,
pub entries: VecDeque<E>,
}Expand description
Bounded ring buffer of events.
Fields§
§capacity: usize§entries: VecDeque<E>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for AuditProjection<E>
impl<E> RefUnwindSafe for AuditProjection<E>where
E: RefUnwindSafe,
impl<E> Send for AuditProjection<E>where
E: Send,
impl<E> Sync for AuditProjection<E>where
E: Sync,
impl<E> Unpin for AuditProjection<E>where
E: Unpin,
impl<E> UnsafeUnpin for AuditProjection<E>
impl<E> UnwindSafe for AuditProjection<E>where
E: UnwindSafe,
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