pub struct NotCompleteTreeSizeErr {
pub length: usize,
}Expand description
Error indicating the vec that was passed is not a size that you would expect for the given height.
Fields§
§length: usizeTrait Implementations§
Source§impl Clone for NotCompleteTreeSizeErr
impl Clone for NotCompleteTreeSizeErr
Source§fn clone(&self) -> NotCompleteTreeSizeErr
fn clone(&self) -> NotCompleteTreeSizeErr
Returns a duplicate of the value. Read more
1.0.0 · 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 NotCompleteTreeSizeErr
impl Debug for NotCompleteTreeSizeErr
impl Copy for NotCompleteTreeSizeErr
Auto Trait Implementations§
impl Freeze for NotCompleteTreeSizeErr
impl RefUnwindSafe for NotCompleteTreeSizeErr
impl Send for NotCompleteTreeSizeErr
impl Sync for NotCompleteTreeSizeErr
impl Unpin for NotCompleteTreeSizeErr
impl UnwindSafe for NotCompleteTreeSizeErr
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