pub struct CertificateIndex(pub BigInt);
Expand description
Position of the certificate in a certain transaction
Tuple Fields§
§0: BigInt
Trait Implementations§
Source§impl Clone for CertificateIndex
impl Clone for CertificateIndex
Source§fn clone(&self) -> CertificateIndex
fn clone(&self) -> CertificateIndex
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 CertificateIndex
impl Debug for CertificateIndex
Source§impl Hash for CertificateIndex
impl Hash for CertificateIndex
Source§impl IsPlutusData for CertificateIndex
impl IsPlutusData for CertificateIndex
fn to_plutus_data(&self) -> PlutusData
fn from_plutus_data(plutus_data: &PlutusData) -> Result<Self, PlutusDataError>where
Self: Sized,
Source§impl Ord for CertificateIndex
impl Ord for CertificateIndex
Source§fn cmp(&self, other: &CertificateIndex) -> Ordering
fn cmp(&self, other: &CertificateIndex) -> 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 CertificateIndex
impl PartialEq for CertificateIndex
Source§impl PartialOrd for CertificateIndex
impl PartialOrd for CertificateIndex
Source§impl TryFromPLA<CertificateIndex> for BigNum
impl TryFromPLA<CertificateIndex> for BigNum
fn try_from_pla(val: &CertificateIndex) -> Result<Self, TryFromPLAError>
impl Eq for CertificateIndex
impl StructuralPartialEq for CertificateIndex
Auto Trait Implementations§
impl Freeze for CertificateIndex
impl RefUnwindSafe for CertificateIndex
impl Send for CertificateIndex
impl Sync for CertificateIndex
impl Unpin for CertificateIndex
impl UnwindSafe for CertificateIndex
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