pub struct GrowingMetadata {
pub num_trees_attempted: i64,
pub num_layers_attempted: i64,
pub last_layer_node_start: i32,
pub last_layer_node_end: i32,
}
Fields§
§num_trees_attempted: i64
Number of trees that we have attempted to build. After pruning, these trees might have been removed.
num_layers_attempted: i64
Number of layers that we have attempted to build. After pruning, these layers might have been removed.
last_layer_node_start: i32
The start (inclusive) and end (exclusive) ids of the nodes in the latest layer of the latest tree.
last_layer_node_end: i32
Trait Implementations§
Source§impl Clone for GrowingMetadata
impl Clone for GrowingMetadata
Source§fn clone(&self) -> GrowingMetadata
fn clone(&self) -> GrowingMetadata
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 GrowingMetadata
impl Debug for GrowingMetadata
Source§impl Default for GrowingMetadata
impl Default for GrowingMetadata
Source§impl Message for GrowingMetadata
impl Message for GrowingMetadata
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message to a buffer. Read more
Source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn decode<B>(buf: B) -> Result<Self, DecodeError>
fn decode<B>(buf: B) -> Result<Self, DecodeError>
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes an instance of the message from a buffer, and merges it into
self
. Read moreSource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.Source§impl PartialEq for GrowingMetadata
impl PartialEq for GrowingMetadata
impl StructuralPartialEq for GrowingMetadata
Auto Trait Implementations§
impl Freeze for GrowingMetadata
impl RefUnwindSafe for GrowingMetadata
impl Send for GrowingMetadata
impl Sync for GrowingMetadata
impl Unpin for GrowingMetadata
impl UnwindSafe for GrowingMetadata
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