pub struct Cold {
pub at: Addr,
pub len: u32,
}Expand description
Where a demoted value is and how big it is.
Fields§
§at: AddrWhere on the file the value lives.
len: u32How many bytes it is, so the reader can size its buffer in one go and the commands that only want the length never go and look.
Trait Implementations§
impl Copy for Cold
impl Eq for Cold
impl StructuralPartialEq for Cold
Auto Trait Implementations§
impl Freeze for Cold
impl RefUnwindSafe for Cold
impl Send for Cold
impl Sync for Cold
impl Unpin for Cold
impl UnsafeUnpin for Cold
impl UnwindSafe for Cold
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