pub struct ContentHashTree {
pub root: Vec<u8>,
pub segment_count: u16,
}Expand description
Content hash tree (Merkle structure).
content-hash-tree = {
1 => bstr, ; root
2 => uint16 .ge 20, ; segment_count
}Fields§
§root: Vec<u8>Merkle root hash.
segment_count: u16Number of segments.
Trait Implementations§
Source§impl Clone for ContentHashTree
impl Clone for ContentHashTree
Source§fn clone(&self) -> ContentHashTree
fn clone(&self) -> ContentHashTree
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 ContentHashTree
impl Debug for ContentHashTree
Source§impl<'de> Deserialize<'de> for ContentHashTree
impl<'de> Deserialize<'de> for ContentHashTree
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ContentHashTree
impl RefUnwindSafe for ContentHashTree
impl Send for ContentHashTree
impl Sync for ContentHashTree
impl Unpin for ContentHashTree
impl UnsafeUnpin for ContentHashTree
impl UnwindSafe for ContentHashTree
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