pub struct PartialSplitDict {
pub remaining_bit_len: u16,
pub left_branch: Option<Cell>,
pub right_branch: Option<Cell>,
}Expand description
Raw split dict
Fields§
§remaining_bit_len: u16Remaining dict key bit length
left_branch: Option<Cell>Left raw branch
right_branch: Option<Cell>Right raw branch
Trait Implementations§
Source§impl Clone for PartialSplitDict
impl Clone for PartialSplitDict
Source§fn clone(&self) -> PartialSplitDict
fn clone(&self) -> PartialSplitDict
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PartialSplitDict
impl !RefUnwindSafe for PartialSplitDict
impl Send for PartialSplitDict
impl Sync for PartialSplitDict
impl Unpin for PartialSplitDict
impl !UnwindSafe for PartialSplitDict
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