pub struct PageObjectInspection {
pub id: u64,
pub kind: &'static str,
pub payload_len: usize,
}Expand description
Public diagnostic view of one object inside a page.
Fields§
§id: u64Object id within the page.
kind: &'static strHuman-readable object kind.
payload_len: usizePayload length in bytes.
Trait Implementations§
Source§impl Clone for PageObjectInspection
impl Clone for PageObjectInspection
Source§fn clone(&self) -> PageObjectInspection
fn clone(&self) -> PageObjectInspection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PageObjectInspection
impl Debug for PageObjectInspection
impl Eq for PageObjectInspection
Source§impl PartialEq for PageObjectInspection
impl PartialEq for PageObjectInspection
impl StructuralPartialEq for PageObjectInspection
Auto Trait Implementations§
impl Freeze for PageObjectInspection
impl RefUnwindSafe for PageObjectInspection
impl Send for PageObjectInspection
impl Sync for PageObjectInspection
impl Unpin for PageObjectInspection
impl UnsafeUnpin for PageObjectInspection
impl UnwindSafe for PageObjectInspection
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