Struct merkle_tree_stream::PartialNode [] [src]

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

Intermediate Node representation. Same as Node, but without the .hash field.

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.

Trait Implementations

impl Debug for PartialNode
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for PartialNode
[src]

impl Ord for PartialNode
[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 PartialNode
[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 PartialNode
[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 PartialNode

impl Sync for PartialNode