pub enum CsEvent {
Hit {
name: Arc<Name>,
},
Miss {
name: Arc<Name>,
},
Insert {
name: Arc<Name>,
bytes: usize,
},
Evict {
name: Arc<Name>,
},
}Expand description
Events emitted by an observable content store.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CsEvent
impl RefUnwindSafe for CsEvent
impl Send for CsEvent
impl Sync for CsEvent
impl Unpin for CsEvent
impl UnwindSafe for CsEvent
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