Module polkadot_service::runtime_traits
source · Expand description
Primitives for the runtime modules.
Modules§
- The transaction extension trait.
Macros§
- Create new implementations of the
Get
trait.
Structs§
- A lookup implementation returning the
AccountId
from aMultiAddress
. - Input that adds infinite number of zero after wrapped input.
- An error type that indicates that the origin is invalid.
- Blake2-256 Hash implementation.
- A
TryMorph
implementation to reduce a scalar by a particular amount, checking for underflow. - Const getter for a basic type.
- Const getter for a basic type.
- Const getter for a basic type.
- Const getter for a basic type.
- Const getter for a basic type.
- Const getter for a basic type.
- Const getter for signed integers.
- Const getter for a basic type.
- Const getter for a basic type.
- Const getter for a basic type.
- Const getter for a basic type.
- Const getter for a basic type.
- Const getter for unsigned integers.
- A structure that performs standard conversion using the standard Rust conversion traits.
- Dispatchable impl containing an arbitrary value which panics if it actually is dispatched.
- Implement Get by returning Default for any type that implements Default.
- A structure that performs identity conversion.
- A lookup implementation returning the input value.
- Keccak-256 Hash implementation.
- An error that indicates that a lookup failed.
- Implementation of
Morph
which converts between types usingInto
. - A
TryMorph
implementation to enforce an upper limit for a result of the outer morphed type. - Zero-sized type used to mark things that “act like” they own a
T
. - Mutator which reduces a scalar by a particular amount.
- Morpher to disregard the source value and replace with another.
- Morpher to disregard the source value and replace with the default of
V
. - Implementation of
Morph
to retrieve just the first element of a tuple. - Input that adds infinite number of zero after wrapped input.
- Information about a
TransactionExtension
for the runtime metadata. - A structure that performs standard conversion using the standard Rust conversion traits.
- Implementation of
TryMorph
which attempts to convert between types usingTryInto
.
Traits§
- This type can be converted into and possibly from an AccountId (which itself is generic).
- Means of signature verification of an application key.
- An “executable” piece of information, used by the standard Substrate Executive in order to enact a piece of extrinsic information by marshalling and dispatching to a named function call.
- Runtime Origin which includes a System Origin variant whose
AccountId
is the parameter. - Interface to differentiate between Runtime Origins authorized to include a transaction into the block and dispatch it, and those who aren’t.
- A meta trait for arithmetic.
- A meta trait for arithmetic. Same as
AtLeast32Bit
, but also bounded to be unsigned. - A “checkable” piece of information, used by the standard Substrate Executive in order to check the validity of a piece of extrinsic information, usually by verifying the signature. Implement for pieces of information that don’t require additional context in order to be checked.
- Something which fulfills the abstract idea of a Substrate block. It has types for
Extrinsic
pieces of information as well as aHeader
. - Something that can convert a
BlockId
to a number or a hash. - Super trait with all the attributes for a block number.
- Get current block number
- Numbers which have upper and lower bounds
- Something that can be checked for equality and printed out to a debug channel if bad.
- Extract the digest type for a block. A “checkable” piece of information, used by the standard Substrate Executive in order to check the validity of a piece of extrinsic information, usually by verifying the signature. Implement for pieces of information that require some additional context
Context
in order to be checked. - Performs addition that returns
None
instead of wrapping around on overflow. - Convenience type to work around the highly unergonomic syntax needed to invoke the functions of overloaded generic traits, in this case
TryFrom
andTryInto
. - Performs division that returns
None
instead of panicking on division by zero and instead of wrapping around on underflow and overflow. - Performs multiplication that returns
None
instead of wrapping around on underflow or overflow. - Performs a left shift that returns
None
on shifts larger than or equal to the type width. - Performs a right shift that returns
None
on shifts larger than or equal to the type width. - Performs subtraction that returns
None
instead of wrapping around on underflow. - Trait for things that can be clear (have no bits set). For numeric types, essentially the same as
Zero
. - Infallible conversion trait. Generic over both source and destination types.
- Reversing infallible conversion trait. Generic over both source and destination types.
?
formatting.- Single-function utility trait with a blanket impl over
TransactionExtension
in order to provide transaction dispatching functionality. We avoid implementing this directly on the trait since we never want it to be overriden by the trait implementation. - A lazy call (module function and argument values) that can be executed via its
dispatch
method. - Performs addition that returns
ArithmeticError
instead of wrapping around on overflow. - Performs self addition that returns
ArithmeticError
instead of wrapping around on overflow. - Performs division that returns
ArithmeticError
instead of wrapping around on overflow. - Performs self division that returns
ArithmeticError
instead of wrapping around on overflow. - Extends
FixedPointNumber
with the Ensure family functions. - Similar to
TryFrom
but returning anArithmeticError
error. - Similar to
TryInto
but returning anArithmeticError
error. - Performs multiplication that returns
ArithmeticError
instead of wrapping around on overflow. - Performs self multiplication that returns
ArithmeticError
instead of wrapping around on overflow. - Meta trait that supports all immutable arithmetic
Ensure*
operations - Meta trait that supports all assigned arithmetic
Ensure*
operations - Performs subtraction that returns
ArithmeticError
instead of wrapping around on underflow. - Performs self subtraction that returns
ArithmeticError
instead of wrapping around on underflow. - A type that can handle weight refunds and incorporate extension weights into the call weight after dispatch.
- ExtrinsicDeprecatedSomething that acts like an
Extrinsic
. - Something that acts like an
Extrinsic
. - Implementor is an
Extrinsic
and provides metadata about this extrinsic. - A trait for querying a single value from a type.
- A marker trait for something that knows the type of the node block.
- A marker trait for something that knows the type of the runtime block.
- Abstraction around hashing
- Super trait with all the attributes for a hashing output.
- Something which fulfills the abstract idea of a Substrate header. It has types for a
Number
, aHash
and aHashing
. It provides access to anextrinsics_root
,state_root
andparent_hash
, as well as adigest
and a blocknumber
. - Some type that is able to be collapsed into an account ID. It is not possible to recreate the original value from the account ID.
- A trait implementing integer square root.
- Determine if a
MemberId
is a valid member. - A lazy value.
- Means of changing one type into another in a manner dependent on the source type.
- Fallible conversion trait returning an Option. Generic over both source and destination types.
- Reversing fallible conversion trait returning an Option. Generic over both source and destination types.
- A type that implements Display when in std environment.
- Definition for a bi-directional, fallible conversion between two types.
- A type that implements FromStr when in std environment.
- A type that implements Hash when in std environment.
- A type that implements Serialize when in std environment or serde feature is activated.
- A type that implements Serialize, DeserializeOwned and Debug when in std environment or serde feature is activated.
- A type that can be used in runtime structures.
- Extensible conversion trait. Generic over only source type, with destination type being associated.
- Defines a multiplicative identity element for
Self
. - Opaque data type that may be destructured into a series of raw byte slices (which represent individual keys).
- Trait for things which can be printed from the runtime.
- A type that can handle weight refunds.
- Convenience type to work around the highly unergonomic syntax needed to invoke the functions of overloaded generic traits, in this case
SaturatedFrom
andSaturatedInto
. - Saturating arithmetic operations, returning maximum or minimum values instead of overflowing.
- Multiply and divide by a number that isn’t necessarily the same type. Basically just the same as
Mul
andDiv
except it can be used for all basic numeric types. - Something that acts like a
SignaturePayload
of anExtrinsic
. - SignedExtensionDeprecatedMeans by which a transaction may be extended. This type embodies both the data and the logic that should be additionally associated with the transaction. It should be plain old data.
- A meta trait for all bit ops.
- Means of changing one type into another in a manner dependent on the source type. This variant is different to
Lookup
in that it doesn’t (can cannot) require any context. - Means by which a transaction may be extended. This type embodies both the data and the logic that should be additionally associated with the transaction. It should be plain old data.
- Try and collect into a collection
C
. - Fallible conversion trait which returns the argument in the case of being unable to convert. Generic over both source and destination types.
- Reversing fallible conversion trait which returns the argument in the case of being unable to convert back. Generic over both source and destination types.
- Extensible conversion trait. Generic over only source type, with destination type being associated.
- A trait for querying a single value from a type defined in the trait.
- Just like
From
except that if the source value is too big to fit into the destination type then it’ll saturate the destination. - Just like
Into
except that if the source value is too big to fit into the destination type then it’ll saturate the destination. - Provide validation for unsigned extrinsics.
- Means of signature verification.
- Defines an additive identity element for
Self
.
Functions§
- Raises a value to the power of exp, returning
None
if an overflow occurred. - Raises a value to the power of exp, returning
ArithmeticError
if an overflow occurred.
Type Aliases§
- Shortcut to reference the
Info
type of aDispatchable
. - Shortcut to reference the
RuntimeOrigin
type of aDispatchable
. - Extract the hashing type for a block.
- Extract the number type for a block.
- Shortcut to reference the
PostInfo
type of aDispatchable
. - Shortcut for the result value of the
validate
function.
Derive Macros§
- Derive macro generating an impl of the trait
Debug
.