pub enum ImplItem {
Constructor(Constructor),
Message(Message),
Other(ImplItem),
}
Expand description
An item within an ink! implementation block.
Can be either
- an ink!
ir::Constructor
- an ink!
ir::Message
- or any other non-ink! item.
§Note
Based on syn::ImplItem
with special variants for ink! impl
items.
Variants§
Constructor(Constructor)
A #[ink(constructor)]
marked inherent function.
Message(Message)
A #[ink(message)]
marked method.
Other(ImplItem)
Any other implementation block item.
Implementations§
Source§impl ImplItem
impl ImplItem
Sourcepub fn is_message(&self) -> bool
pub fn is_message(&self) -> bool
Returns true
if the impl
block item is an ink! message.
Sourcepub fn filter_map_message(&self) -> Option<&Message>
pub fn filter_map_message(&self) -> Option<&Message>
Returns Some
if self
is an ink! message.
Otherwise, returns None
.
Sourcepub fn is_constructor(&self) -> bool
pub fn is_constructor(&self) -> bool
Returns true
if the impl
block item is an ink! message.
Sourcepub fn filter_map_constructor(&self) -> Option<&Constructor>
pub fn filter_map_constructor(&self) -> Option<&Constructor>
Returns Some
if self
is an ink! constructor.
Otherwise, returns None
.
Sourcepub fn is_other_item(&self) -> bool
pub fn is_other_item(&self) -> bool
Returns true
if the impl
block item is a non ink! specific item.
Sourcepub fn filter_map_other_item(&self) -> Option<&ImplItem>
pub fn filter_map_other_item(&self) -> Option<&ImplItem>
Returns Some
if self
is a not an ink! specific item.
Otherwise, returns None
.
Trait Implementations§
Source§impl ToTokens for ImplItem
impl ToTokens for ImplItem
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 ImplItem
impl StructuralPartialEq for ImplItem
Auto Trait Implementations§
impl Freeze for ImplItem
impl RefUnwindSafe for ImplItem
impl !Send for ImplItem
impl !Sync for ImplItem
impl Unpin for ImplItem
impl UnwindSafe for ImplItem
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.