pub enum InkItem {
Storage(Storage),
Event(Event),
ImplBlock(ItemImpl),
}
Expand description
An ink! specific item.
Variants§
Storage(Storage)
The ink! storage struct definition.
Event(Event)
An ink! event definition.
ImplBlock(ItemImpl)
An ink! implementation block.
Implementations§
Source§impl InkItem
impl InkItem
Sourcepub fn filter_map_storage_item(&self) -> Option<&Storage>
pub fn filter_map_storage_item(&self) -> Option<&Storage>
Returns Some
if self
is the ink! storage struct definition.
Otherwise, returns None
.
Sourcepub fn is_storage_item(&self) -> bool
pub fn is_storage_item(&self) -> bool
Returns true
if the ink! specific item is the storage struct definition.
Sourcepub fn filter_map_event_item(&self) -> Option<&Event>
pub fn filter_map_event_item(&self) -> Option<&Event>
Returns Some
if self
is an ink! event struct definition.
Otherwise, returns None
.
Sourcepub fn is_event_item(&self) -> bool
pub fn is_event_item(&self) -> bool
Returns true
if the ink! specific item is an event struct definition.
Sourcepub fn filter_map_impl_block(&self) -> Option<&ItemImpl>
pub fn filter_map_impl_block(&self) -> Option<&ItemImpl>
Returns Some
if self
is an ink! implementation block.
Otherwise, returns None
.
Sourcepub fn is_impl_block(&self) -> bool
pub fn is_impl_block(&self) -> bool
Returns true
if the ink! specific item is an implementation block.
Trait Implementations§
Source§impl ToTokens for InkItem
impl ToTokens for InkItem
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 InkItem
impl StructuralPartialEq for InkItem
Auto Trait Implementations§
impl Freeze for InkItem
impl RefUnwindSafe for InkItem
impl !Send for InkItem
impl !Sync for InkItem
impl Unpin for InkItem
impl UnwindSafe for InkItem
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.