pub struct OECacheEntry {
pub key: String,
pub data: Vec<u8>,
pub timestamp: u64,
pub valid: bool,
}Fields§
§key: String§data: Vec<u8>§timestamp: u64§valid: boolTrait Implementations§
Source§impl Clone for OECacheEntry
impl Clone for OECacheEntry
Source§fn clone(&self) -> OECacheEntry
fn clone(&self) -> OECacheEntry
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 OECacheEntry
impl RefUnwindSafe for OECacheEntry
impl Send for OECacheEntry
impl Sync for OECacheEntry
impl Unpin for OECacheEntry
impl UnsafeUnpin for OECacheEntry
impl UnwindSafe for OECacheEntry
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