pub trait TransactionExtensionSchema:
Encode
+ Decode
+ DecodeWithMemTracking
+ Debug
+ Eq
+ Clone
+ StaticTypeInfo {
type Payload: Encode + Decode + Debug + Eq + Clone + StaticTypeInfo;
type Implicit: Encode + Decode + Debug + Eq + Clone + StaticTypeInfo;
}
Expand description
Trait that describes some properties of a TransactionExtension
that are needed in order to
send a transaction to the chain.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.