pub enum DeadlineActivity {
ActiveContending,
ActiveNonContending,
Inactive,
}Expand description
GRUB activity of one admitted Deadline reservation.
Variants§
ActiveContending
Runnable or executing, and therefore contributing active utilization.
ActiveNonContending
Blocked before zero-lag while still contributing active utilization.
Inactive
Blocked past zero-lag and eligible to donate inactive utilization.
Trait Implementations§
Source§impl Clone for DeadlineActivity
impl Clone for DeadlineActivity
Source§fn clone(&self) -> DeadlineActivity
fn clone(&self) -> DeadlineActivity
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DeadlineActivity
Source§impl Debug for DeadlineActivity
impl Debug for DeadlineActivity
impl Eq for DeadlineActivity
Source§impl PartialEq for DeadlineActivity
impl PartialEq for DeadlineActivity
impl StructuralPartialEq for DeadlineActivity
Auto Trait Implementations§
impl Freeze for DeadlineActivity
impl RefUnwindSafe for DeadlineActivity
impl Send for DeadlineActivity
impl Sync for DeadlineActivity
impl Unpin for DeadlineActivity
impl UnsafeUnpin for DeadlineActivity
impl UnwindSafe for DeadlineActivity
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