Struct chrome_cache_parser::block_file::RankingsNode
source · #[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: u32Trait 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