pub struct EncodedTree {
pub hash: ContentHash,
pub data: Vec<u8>,
pub kind: TreeEncodingKind,
}Fields§
§hash: ContentHash§data: Vec<u8>§kind: TreeEncodingKindTrait Implementations§
Source§impl Clone for EncodedTree
impl Clone for EncodedTree
Source§fn clone(&self) -> EncodedTree
fn clone(&self) -> EncodedTree
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EncodedTree
impl Debug for EncodedTree
impl Eq for EncodedTree
Source§impl PartialEq for EncodedTree
impl PartialEq for EncodedTree
impl StructuralPartialEq for EncodedTree
Auto Trait Implementations§
impl Freeze for EncodedTree
impl RefUnwindSafe for EncodedTree
impl Send for EncodedTree
impl Sync for EncodedTree
impl Unpin for EncodedTree
impl UnsafeUnpin for EncodedTree
impl UnwindSafe for EncodedTree
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