pub trait WeightInfo {
// Required methods
fn request_core_count() -> Weight;
fn request_revenue_at() -> Weight;
fn credit_account() -> Weight;
fn assign_core(s: u32) -> Weight;
}
Required Methods§
fn request_core_count() -> Weight
fn request_revenue_at() -> Weight
fn credit_account() -> Weight
fn assign_core(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.