#[repr(C, packed(4))]pub struct RankingsNode {
pub last_used: WindowsEpochMicroseconds,
pub last_modified: WindowsEpochMicroseconds,
pub next: CacheAddr,
pub prev: CacheAddr,
pub contents: CacheAddr,
pub dirty: i32,
pub self_hash: u32,
}
Fields§
§last_used: WindowsEpochMicroseconds
§last_modified: WindowsEpochMicroseconds
§next: CacheAddr
§prev: CacheAddr
§contents: CacheAddr
§dirty: i32
§self_hash: u32
Trait Implementations§
Source§impl Clone for RankingsNode
impl Clone for RankingsNode
Source§fn clone(&self) -> RankingsNode
fn clone(&self) -> RankingsNode
Returns a copy 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 moreSource§impl Debug for RankingsNode
impl Debug for RankingsNode
Source§impl FromBytes for RankingsNode
impl FromBytes for RankingsNode
Source§fn slice_from_prefix(bytes: &[u8], count: usize) -> Option<(&[Self], &[u8])>where
Self: Sized,
fn slice_from_prefix(bytes: &[u8], count: usize) -> Option<(&[Self], &[u8])>where
Self: Sized,
Interprets the prefix of the given
bytes
as a &[Self]
with length
equal to count
without copying. Read moreSource§fn slice_from_suffix(bytes: &[u8], count: usize) -> Option<(&[u8], &[Self])>where
Self: Sized,
fn slice_from_suffix(bytes: &[u8], count: usize) -> Option<(&[u8], &[Self])>where
Self: Sized,
Interprets the suffix of the given
bytes
as a &[Self]
with length
equal to count
without copying. Read moreSource§impl FromZeroes for RankingsNodewhere
WindowsEpochMicroseconds: FromZeroes,
CacheAddr: FromZeroes,
i32: FromZeroes,
u32: FromZeroes,
impl FromZeroes for RankingsNodewhere
WindowsEpochMicroseconds: FromZeroes,
CacheAddr: FromZeroes,
i32: FromZeroes,
u32: FromZeroes,
Auto Trait Implementations§
impl Freeze for RankingsNode
impl RefUnwindSafe for RankingsNode
impl Send for RankingsNode
impl Sync for RankingsNode
impl Unpin for RankingsNode
impl UnwindSafe for RankingsNode
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