pub struct BytesNode {
pub color: Color,
pub len: usize,
pub left: BytesTree,
pub right: BytesTree,
}Fields§
§color: Color§len: usize§left: BytesTree§right: BytesTreeTrait Implementations§
impl Eq for BytesNode
impl StructuralPartialEq for BytesNode
Auto Trait Implementations§
impl Freeze for BytesNode
impl RefUnwindSafe for BytesNode
impl !Send for BytesNode
impl !Sync for BytesNode
impl Unpin for BytesNode
impl UnsafeUnpin for BytesNode
impl UnwindSafe for BytesNode
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