pub trait StaticTypeParams: MoveStruct {
// Required method
fn type_params() -> Vec<TypeTag>;
}Expand description
Move struct for which the type args of object are known at compile time.
Required Methods§
fn type_params() -> Vec<TypeTag>
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.