pub trait Callable {
// Required methods
fn kind(&self) -> CallableKind;
fn ident(&self) -> &Ident;
fn user_provided_selector(&self) -> Option<&Selector>;
fn is_payable(&self) -> bool;
fn is_default(&self) -> bool;
fn has_wildcard_selector(&self) -> bool;
fn has_wildcard_complement_selector(&self) -> bool;
fn visibility(&self) -> Visibility;
fn inputs(&self) -> InputsIter<'_> ⓘ;
fn inputs_span(&self) -> Span;
fn statements(&self) -> &[Stmt];
}
Expand description
An ink! callable.
This is either an ink! message or an ink! constructor. Used to share common behavior between different callable types.
Required Methods§
Sourcefn kind(&self) -> CallableKind
fn kind(&self) -> CallableKind
Returns the kind of the ink! callable.
Sourcefn user_provided_selector(&self) -> Option<&Selector>
fn user_provided_selector(&self) -> Option<&Selector>
Returns the selector of the ink! callable if any has been manually set.
Sourcefn is_payable(&self) -> bool
fn is_payable(&self) -> bool
Returns true
if the ink! callable is flagged as payable.
§Note
Flagging as payable is done using the #[ink(payable)]
attribute.
Sourcefn is_default(&self) -> bool
fn is_default(&self) -> bool
Returns true
if the ink! callable is flagged as default.
§Note
Flagging as default is done using the #[ink(default)]
attribute.
Sourcefn has_wildcard_selector(&self) -> bool
fn has_wildcard_selector(&self) -> bool
Returns true
if the ink! callable is flagged as a wildcard selector.
Sourcefn has_wildcard_complement_selector(&self) -> bool
fn has_wildcard_complement_selector(&self) -> bool
Returns true
if the ink! callable is flagged as a wildcard complement selector.
Sourcefn visibility(&self) -> Visibility
fn visibility(&self) -> Visibility
Returns the visibility of the ink! callable.
Sourcefn inputs(&self) -> InputsIter<'_> ⓘ
fn inputs(&self) -> InputsIter<'_> ⓘ
Returns an iterator yielding all input parameters of the ink! callable.
Sourcefn inputs_span(&self) -> Span
fn inputs_span(&self) -> Span
Returns the span of the inputs of the ink! callable.
Sourcefn statements(&self) -> &[Stmt]
fn statements(&self) -> &[Stmt]
Returns a slice over shared references to the statements of the callable.