pub struct ChainPointer {
pub slot_number: Slot,
pub transaction_index: TransactionIndex,
pub certificate_index: CertificateIndex,
}
Expand description
In an address, a chain pointer refers to a point of the chain containing a stake key registration certificate. A point is identified by 3 coordinates:
- An absolute slot number
- A transaction inder (within that slot)
- A (delegation) certificate index (within that transacton)
Fields§
§slot_number: Slot
§transaction_index: TransactionIndex
§certificate_index: CertificateIndex
Trait Implementations§
Source§impl Clone for ChainPointer
impl Clone for ChainPointer
Source§fn clone(&self) -> ChainPointer
fn clone(&self) -> ChainPointer
Returns a copy 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 ChainPointer
impl Debug for ChainPointer
Source§impl Hash for ChainPointer
impl Hash for ChainPointer
Source§impl Ord for ChainPointer
impl Ord for ChainPointer
Source§fn cmp(&self, other: &ChainPointer) -> Ordering
fn cmp(&self, other: &ChainPointer) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ChainPointer
impl PartialEq for ChainPointer
Source§impl PartialOrd for ChainPointer
impl PartialOrd for ChainPointer
Source§impl TryFromPLA<ChainPointer> for Pointer
impl TryFromPLA<ChainPointer> for Pointer
fn try_from_pla(val: &ChainPointer) -> Result<Self, TryFromPLAError>
impl Eq for ChainPointer
impl StructuralPartialEq for ChainPointer
Auto Trait Implementations§
impl Freeze for ChainPointer
impl RefUnwindSafe for ChainPointer
impl Send for ChainPointer
impl Sync for ChainPointer
impl Unpin for ChainPointer
impl UnwindSafe for ChainPointer
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
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