pub struct CacheMissEvent {
pub key: u64,
pub source_name: Option<String>,
pub reason: MissReason,
}Expand description
Cache-miss notification.
Fields§
§key: u64§source_name: Option<String>§reason: MissReasonTrait Implementations§
Source§impl Clone for CacheMissEvent
impl Clone for CacheMissEvent
Source§fn clone(&self) -> CacheMissEvent
fn clone(&self) -> CacheMissEvent
Returns a duplicate of the value. Read more
1.0.0 · 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 CacheMissEvent
impl RefUnwindSafe for CacheMissEvent
impl Send for CacheMissEvent
impl Sync for CacheMissEvent
impl Unpin for CacheMissEvent
impl UnsafeUnpin for CacheMissEvent
impl UnwindSafe for CacheMissEvent
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