pub struct AppendedLeaf {
pub index: u64,
pub signed_checkpoint: SignedCheckpoint,
}Expand description
The outcome of appending one leaf: its assigned index and the new signed checkpoint covering it.
Fields§
§index: u64Zero-based index the leaf was sequenced at.
signed_checkpoint: SignedCheckpointThe checkpoint signed over the tree that now includes the leaf.
Trait Implementations§
Source§impl Clone for AppendedLeaf
impl Clone for AppendedLeaf
Source§fn clone(&self) -> AppendedLeaf
fn clone(&self) -> AppendedLeaf
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 moreAuto Trait Implementations§
impl Freeze for AppendedLeaf
impl RefUnwindSafe for AppendedLeaf
impl Send for AppendedLeaf
impl Sync for AppendedLeaf
impl Unpin for AppendedLeaf
impl UnsafeUnpin for AppendedLeaf
impl UnwindSafe for AppendedLeaf
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