pub enum MeterReadings {
None,
Final(Vec<(u32, f32)>),
PerBlock(Vec<Vec<(u32, f32)>>),
}Variants§
Trait Implementations§
Source§impl Default for MeterReadings
impl Default for MeterReadings
Source§fn default() -> MeterReadings
fn default() -> MeterReadings
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MeterReadings
impl RefUnwindSafe for MeterReadings
impl Send for MeterReadings
impl Sync for MeterReadings
impl Unpin for MeterReadings
impl UnsafeUnpin for MeterReadings
impl UnwindSafe for MeterReadings
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more