pub struct Pending;Expand description
Type-level marker for empty dependency list.
This type appears in the type signature of crate::TaskBuilder<Tk, Pending> before
dependencies are specified with crate::TaskBuilder::depends_on.
You don’t interact with this type directly; it’s part of the type-state pattern that ensures dependencies are wired correctly at compile time.
Auto Trait Implementations§
impl Freeze for Pending
impl RefUnwindSafe for Pending
impl Send for Pending
impl Sync for Pending
impl Unpin for Pending
impl UnwindSafe for Pending
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