pub struct ChainExtensionMethod { /* private fields */ }
Expand description
An ink! chain extension method.
Implementations§
Source§impl ChainExtensionMethod
impl ChainExtensionMethod
Sourcepub fn attrs(&self) -> Vec<Attribute>
pub fn attrs(&self) -> Vec<Attribute>
Returns the Rust attributes of the ink! chain extension method.
Sourcepub fn sig(&self) -> &Signature
pub fn sig(&self) -> &Signature
Returns the method signature of the ink! chain extension method.
Sourcepub fn inputs(&self) -> ChainExtensionMethodInputs<'_>
pub fn inputs(&self) -> ChainExtensionMethodInputs<'_>
Returns an iterator over the inputs of the chain extension method.
Sourcepub fn handle_status(&self) -> bool
pub fn handle_status(&self) -> bool
Returns true
if the chain extension method was flagged with
#[ink(handle_status)]
.
Trait Implementations§
Source§impl Debug for ChainExtensionMethod
impl Debug for ChainExtensionMethod
Source§impl PartialEq for ChainExtensionMethod
impl PartialEq for ChainExtensionMethod
impl Eq for ChainExtensionMethod
impl StructuralPartialEq for ChainExtensionMethod
Auto Trait Implementations§
impl Freeze for ChainExtensionMethod
impl RefUnwindSafe for ChainExtensionMethod
impl !Send for ChainExtensionMethod
impl !Sync for ChainExtensionMethod
impl Unpin for ChainExtensionMethod
impl UnwindSafe for ChainExtensionMethod
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> 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