pub struct Task<P: BuildCmd> {
pub param: P,
pub output: Output,
pub stdout: String,
pub stderr: String,
}Fields§
§param: P§output: Output§stdout: String§stderr: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<P> Freeze for Task<P>where
P: Freeze,
impl<P> RefUnwindSafe for Task<P>where
P: RefUnwindSafe,
impl<P> Send for Task<P>where
P: Send,
impl<P> Sync for Task<P>where
P: Sync,
impl<P> Unpin for Task<P>where
P: Unpin,
impl<P> UnwindSafe for Task<P>where
P: UnwindSafe,
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