pub struct CertificatePointer {
pub transaction: TransactionPointer,
pub certificate_index: usize,
}Fields§
§transaction: TransactionPointer§certificate_index: usizeImplementations§
Trait Implementations§
Source§impl Clone for CertificatePointer
impl Clone for CertificatePointer
Source§fn clone(&self) -> CertificatePointer
fn clone(&self) -> CertificatePointer
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 CertificatePointer
impl Debug for CertificatePointer
Source§impl<'b, C> Decode<'b, C> for CertificatePointer
impl<'b, C> Decode<'b, C> for CertificatePointer
Source§impl Default for CertificatePointer
impl Default for CertificatePointer
Source§fn default() -> CertificatePointer
fn default() -> CertificatePointer
Returns the “default value” for a type. Read more
Source§impl Display for CertificatePointer
impl Display for CertificatePointer
Source§impl<C> Encode<C> for CertificatePointer
impl<C> Encode<C> for CertificatePointer
Source§impl PartialEq for CertificatePointer
impl PartialEq for CertificatePointer
Source§impl PartialOrd for CertificatePointer
impl PartialOrd for CertificatePointer
impl Copy for CertificatePointer
impl Eq for CertificatePointer
impl StructuralPartialEq for CertificatePointer
Auto Trait Implementations§
impl Freeze for CertificatePointer
impl RefUnwindSafe for CertificatePointer
impl Send for CertificatePointer
impl Sync for CertificatePointer
impl Unpin for CertificatePointer
impl UnsafeUnpin for CertificatePointer
impl UnwindSafe for CertificatePointer
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> 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