pub struct SignatureTopicArg { /* private fields */ }
Expand description
The signature topic argument of an event variant.
Used as part of ink::event
macro.
Implementations§
Source§impl SignatureTopicArg
impl SignatureTopicArg
pub fn signature_topic(&self) -> [u8; 32]
Trait Implementations§
Source§impl Clone for SignatureTopicArg
impl Clone for SignatureTopicArg
Source§fn clone(&self) -> SignatureTopicArg
fn clone(&self) -> SignatureTopicArg
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 SignatureTopicArg
impl Debug for SignatureTopicArg
Source§impl Hash for SignatureTopicArg
impl Hash for SignatureTopicArg
Source§impl Ord for SignatureTopicArg
impl Ord for SignatureTopicArg
Source§fn cmp(&self, other: &SignatureTopicArg) -> Ordering
fn cmp(&self, other: &SignatureTopicArg) -> 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 SignatureTopicArg
impl PartialEq for SignatureTopicArg
Source§impl PartialOrd for SignatureTopicArg
impl PartialOrd for SignatureTopicArg
Source§impl TryFrom<&Lit> for SignatureTopicArg
impl TryFrom<&Lit> for SignatureTopicArg
Source§impl TryFrom<&MetaNameValue> for SignatureTopicArg
impl TryFrom<&MetaNameValue> for SignatureTopicArg
Source§impl TryFrom<&MetaValue> for SignatureTopicArg
impl TryFrom<&MetaValue> for SignatureTopicArg
impl Copy for SignatureTopicArg
impl Eq for SignatureTopicArg
impl StructuralPartialEq for SignatureTopicArg
Auto Trait Implementations§
impl Freeze for SignatureTopicArg
impl RefUnwindSafe for SignatureTopicArg
impl Send for SignatureTopicArg
impl Sync for SignatureTopicArg
impl Unpin for SignatureTopicArg
impl UnwindSafe for SignatureTopicArg
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