pub enum PerfTable<'a> {
PerfDomainId(u32),
PerfState(IterablePerfState<'a>),
}Available on crate feature
dev-energymodel only.Variants§
PerfDomainId(u32)
A unique ID number for each performance domain.
PerfState(IterablePerfState<'a>)
Attribute may repeat multiple times (treat it as array)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for PerfTable<'a>
impl<'a> RefUnwindSafe for PerfTable<'a>
impl<'a> Send for PerfTable<'a>
impl<'a> Sync for PerfTable<'a>
impl<'a> Unpin for PerfTable<'a>
impl<'a> UnsafeUnpin for PerfTable<'a>
impl<'a> UnwindSafe for PerfTable<'a>
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