pub trait RmeFfFormerMeterSpecification: RmeFfFormerSpecification {
const METER_OFFSET: u64;
const LEVEL_MIN: i32 = 0i32;
const LEVEL_MAX: i32 = 2_147_483_392i32;
const LEVEL_STEP: i32 = 256i32;
// Provided method
fn create_meter_state() -> FormerMeterState { ... }
}Expand description
The specification of hardware metering in former models.
Required Associated Constants§
const METER_OFFSET: u64
Provided Associated Constants§
const LEVEL_MIN: i32 = 0i32
const LEVEL_MAX: i32 = 2_147_483_392i32
const LEVEL_STEP: i32 = 256i32
Provided Methods§
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.