Struct merkle_tree_stream::Node [] [src]

pub struct Node {
    pub index: u64,
    pub parent: u64,
    pub size: usize,
    pub data: Option<Vec<u8>>,
    pub hash: Vec<u8>,
}

Node representation.

Fields

Offset into the flat-tree data structure.

Reference to this node's parent node.

Total size of all its child nodes combined.

Data if it's a leaf node, nothing if it's a parent node.

Hash of the data, or child nodes if applicable.

Trait Implementations

impl Debug for Node
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for Node
[src]

impl Ord for Node
[src]

[src]

This method returns an Ordering between self and other. Read more

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl PartialEq for Node
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl PartialOrd for Node
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations

impl Send for Node

impl Sync for Node