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