pub struct Child<M: CoreMem> {
pub seq: u64,
pub offset: u64,
/* private fields */
}
Expand description
Pointer used within a Node
to reference to it’s child nodes.
Fields§
§seq: u64
Index of the BlockEntry
within the hypercore::Hypercore
that contains the Node
offset: u64
Index of the Node
within the BlockEntry
referenced by Child::seq
Trait Implementations§
Auto Trait Implementations§
impl<M> !RefUnwindSafe for Child<M>
impl<M> !Send for Child<M>
impl<M> !Sync for Child<M>
impl<M> Unpin for Child<M>
impl<M> !UnwindSafe for Child<M>
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