pub struct ItemImpl { /* private fields */ }
Expand description
An ink! implementation block.
§Note
- This can be either an inherent implementation block that implements some constructors, messages or internal functions for the storage struct; OR it can be a trait implementation for the storage struct.
- We try to support all fields that are supported by the underlying
syn
implementation forsyn::ItemImpl
even though they are not really required to represent ink!. This is done for consistency withsyn
.
Implementations§
Source§impl ItemImpl
impl ItemImpl
Sourcepub fn get_cfg_attrs(&self, span: Span) -> Vec<TokenStream>
pub fn get_cfg_attrs(&self, span: Span) -> Vec<TokenStream>
Returns a list of cfg
attributes if any.
Source§impl ItemImpl
impl ItemImpl
Sourcepub fn attrs(&self) -> &[Attribute]
pub fn attrs(&self) -> &[Attribute]
Returns all non-ink! specific attributes of the implementation block.
Sourcepub fn trait_path(&self) -> Option<&Path>
pub fn trait_path(&self) -> Option<&Path>
Returns the trait type path if this is a trait implementation block.
Returns None
if this is an inherent implementation block.
Sourcepub fn trait_ident(&self) -> Option<&Ident>
pub fn trait_ident(&self) -> Option<&Ident>
Returns the trait identifier if this is a trait implementation block.
Returns None
if this is an inherent implementation block.
Sourcepub fn namespace(&self) -> Option<&Namespace>
pub fn namespace(&self) -> Option<&Namespace>
Returns the namespace of the implementation block if any has been provided.
Sourcepub fn iter_messages(&self) -> IterMessages<'_> ⓘ
pub fn iter_messages(&self) -> IterMessages<'_> ⓘ
Returns an iterator yielding the ink! messages of the implementation block.
Sourcepub fn iter_constructors(&self) -> IterConstructors<'_> ⓘ
pub fn iter_constructors(&self) -> IterConstructors<'_> ⓘ
Returns an iterator yielding the ink! messages of the implementation block.
Trait Implementations§
Source§impl ToTokens for ItemImpl
impl ToTokens for ItemImpl
Source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
We mainly implement this trait for this ink! type to have a derived
Spanned
implementation for it.
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl Eq for ItemImpl
impl StructuralPartialEq for ItemImpl
Auto Trait Implementations§
impl Freeze for ItemImpl
impl RefUnwindSafe for ItemImpl
impl !Send for ItemImpl
impl !Sync for ItemImpl
impl Unpin for ItemImpl
impl UnwindSafe for ItemImpl
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 moreSource§impl<T> Spanned for Twhere
T: Spanned + ?Sized,
impl<T> Spanned for Twhere
T: Spanned + ?Sized,
Source§fn span(&self) -> Span
fn span(&self) -> Span
Returns a
Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty.