pub struct AnchorVerification {
pub path: PathBuf,
pub db_count: u64,
pub db_head_hash: Option<String>,
pub anchor: LedgerAnchor,
}Expand description
Successful anchor verification summary.
Fields§
§path: PathBufLedger path that was verified.
db_count: u64Number of rows observed in the current ledger.
db_head_hash: Option<String>Current tip hash after scanning the ledger, or None for an empty
ledger.
anchor: LedgerAnchorAnchor that was verified.
Trait Implementations§
Source§impl Clone for AnchorVerification
impl Clone for AnchorVerification
Source§fn clone(&self) -> AnchorVerification
fn clone(&self) -> AnchorVerification
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 moreSource§impl Debug for AnchorVerification
impl Debug for AnchorVerification
Source§impl PartialEq for AnchorVerification
impl PartialEq for AnchorVerification
Source§fn eq(&self, other: &AnchorVerification) -> bool
fn eq(&self, other: &AnchorVerification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AnchorVerification
impl StructuralPartialEq for AnchorVerification
Auto Trait Implementations§
impl Freeze for AnchorVerification
impl RefUnwindSafe for AnchorVerification
impl Send for AnchorVerification
impl Sync for AnchorVerification
impl Unpin for AnchorVerification
impl UnsafeUnpin for AnchorVerification
impl UnwindSafe for AnchorVerification
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