pub struct CUDACacheEntry {
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 CUDACacheEntry
impl Clone for CUDACacheEntry
Source§fn clone(&self) -> CUDACacheEntry
fn clone(&self) -> CUDACacheEntry
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 CUDACacheEntry
impl RefUnwindSafe for CUDACacheEntry
impl Send for CUDACacheEntry
impl Sync for CUDACacheEntry
impl Unpin for CUDACacheEntry
impl UnsafeUnpin for CUDACacheEntry
impl UnwindSafe for CUDACacheEntry
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