pub struct AddressQueueDataV2 {
pub addresses: Vec<[u8; 32]>,
pub low_element_values: Vec<[u8; 32]>,
pub low_element_next_values: Vec<[u8; 32]>,
pub low_element_indices: Vec<u64>,
pub low_element_next_indices: Vec<u64>,
pub low_element_proofs: Vec<Vec<[u8; 32]>>,
pub nodes: Vec<u64>,
pub node_hashes: Vec<[u8; 32]>,
pub initial_root: [u8; 32],
pub first_queue_index: u64,
}Expand description
V2 Address Queue Data with deduplicated nodes
Fields§
§addresses: Vec<[u8; 32]>§low_element_values: Vec<[u8; 32]>§low_element_next_values: Vec<[u8; 32]>§low_element_indices: Vec<u64>§low_element_next_indices: Vec<u64>§low_element_proofs: Vec<Vec<[u8; 32]>>§nodes: Vec<u64>§node_hashes: Vec<[u8; 32]>§initial_root: [u8; 32]§first_queue_index: u64Trait Implementations§
Source§impl Clone for AddressQueueDataV2
impl Clone for AddressQueueDataV2
Source§fn clone(&self) -> AddressQueueDataV2
fn clone(&self) -> AddressQueueDataV2
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 AddressQueueDataV2
impl Debug for AddressQueueDataV2
Source§impl Default for AddressQueueDataV2
impl Default for AddressQueueDataV2
Source§fn default() -> AddressQueueDataV2
fn default() -> AddressQueueDataV2
Returns the “default value” for a type. Read more
Source§impl PartialEq for AddressQueueDataV2
impl PartialEq for AddressQueueDataV2
impl StructuralPartialEq for AddressQueueDataV2
Auto Trait Implementations§
impl Freeze for AddressQueueDataV2
impl RefUnwindSafe for AddressQueueDataV2
impl Send for AddressQueueDataV2
impl Sync for AddressQueueDataV2
impl Unpin for AddressQueueDataV2
impl UnwindSafe for AddressQueueDataV2
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more