pub struct ChainExtension { /* private fields */ }
Expand description
An ink! chain extension.
Implementations§
Source§impl ChainExtension
impl ChainExtension
Sourcepub fn iter_methods(&self) -> SliceIter<'_, ChainExtensionMethod>
pub fn iter_methods(&self) -> SliceIter<'_, ChainExtensionMethod>
Returns a slice over all the chain extension methods.
Sourcepub fn error_code(&self) -> &Type
pub fn error_code(&self) -> &Type
Returns the type of the error code of the chain extension.
Source§impl ChainExtension
impl ChainExtension
Sourcepub fn new(attr: TokenStream2, input: TokenStream2) -> Result<Self>
pub fn new(attr: TokenStream2, input: TokenStream2) -> Result<Self>
Returns Ok
if the trait matches all requirements for an ink! chain extension.
Trait Implementations§
Source§impl Debug for ChainExtension
impl Debug for ChainExtension
Source§impl PartialEq for ChainExtension
impl PartialEq for ChainExtension
impl Eq for ChainExtension
impl StructuralPartialEq for ChainExtension
Auto Trait Implementations§
impl Freeze for ChainExtension
impl RefUnwindSafe for ChainExtension
impl !Send for ChainExtension
impl !Sync for ChainExtension
impl Unpin for ChainExtension
impl UnwindSafe for ChainExtension
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