pub trait WeightInfo {
// Required methods
fn place_order_allow_death(s: u32) -> Weight;
fn place_order_keep_alive(s: u32) -> Weight;
fn place_order_with_credits(s: u32) -> Weight;
}
Required Methods§
fn place_order_allow_death(s: u32) -> Weight
fn place_order_keep_alive(s: u32) -> Weight
fn place_order_with_credits(s: u32) -> Weight
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.