pub struct ShadowRoot {
pub suffix: Vec<u8>,
pub root: u32,
}Expand description
The root page of one shadow table, by the suffix that names it.
Fields§
§suffix: Vec<u8>The suffix after the virtual table’s own name, such as data.
root: u32The root page of the shadow table’s b-tree.
Trait Implementations§
Source§impl Clone for ShadowRoot
impl Clone for ShadowRoot
Source§impl Debug for ShadowRoot
impl Debug for ShadowRoot
impl Eq for ShadowRoot
Source§impl PartialEq for ShadowRoot
impl PartialEq for ShadowRoot
impl StructuralPartialEq for ShadowRoot
Auto Trait Implementations§
impl Freeze for ShadowRoot
impl RefUnwindSafe for ShadowRoot
impl Send for ShadowRoot
impl Sync for ShadowRoot
impl Unpin for ShadowRoot
impl UnsafeUnpin for ShadowRoot
impl UnwindSafe for ShadowRoot
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