pub struct InterferingTask<'a, RBF: RequestBound + ?Sized> {
pub rbf: &'a RBF,
pub deadline: Duration,
pub max_np_segment: Service,
}
Expand description
The per-task information required to account for interfering tasks. Create a struct of this type for each interfering task.
Fields§
§rbf: &'a RBF
The RBF upper-bounding the task’s demand.
deadline: Duration
The task’s relative deadline.
max_np_segment: Service
An upper bound on the task’s maximum nonpreemptive section length.
Auto Trait Implementations§
impl<'a, RBF> Freeze for InterferingTask<'a, RBF>where
RBF: ?Sized,
impl<'a, RBF> RefUnwindSafe for InterferingTask<'a, RBF>where
RBF: RefUnwindSafe + ?Sized,
impl<'a, RBF> Send for InterferingTask<'a, RBF>
impl<'a, RBF> Sync for InterferingTask<'a, RBF>
impl<'a, RBF> Unpin for InterferingTask<'a, RBF>where
RBF: ?Sized,
impl<'a, RBF> UnwindSafe for InterferingTask<'a, RBF>where
RBF: RefUnwindSafe + ?Sized,
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more