pub struct Task<'a, RBF: RequestBound + ?Sized> {
pub rbf: &'a RBF,
pub deadline: Duration,
}Expand description
The per-task information required to perform the analysis.
Fields§
§rbf: &'a RBFThe RBF upper-bounding the task’s demand.
deadline: DurationThe task’s relative deadline.
Auto Trait Implementations§
impl<'a, RBF> Freeze for Task<'a, RBF>where
RBF: ?Sized,
impl<'a, RBF> RefUnwindSafe for Task<'a, RBF>where
RBF: RefUnwindSafe + ?Sized,
impl<'a, RBF> Send for Task<'a, RBF>
impl<'a, RBF> Sync for Task<'a, RBF>
impl<'a, RBF> Unpin for Task<'a, RBF>where
RBF: ?Sized,
impl<'a, RBF> UnwindSafe for Task<'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