enum CommandState<'a> {
Cached(CommandOutput),
Deferred {
process: Option<Result<Child, Error>>,
command: &'a mut BootstrapCommand,
stdout: OutputMode,
stderr: OutputMode,
executed_at: &'a Location<'a>,
cache_key: Option<CommandCacheKey>,
},
}
Variants§
Cached(CommandOutput)
Deferred
Fields
§
command: &'a mut BootstrapCommand
§
stdout: OutputMode
§
stderr: OutputMode
§
cache_key: Option<CommandCacheKey>
Auto Trait Implementations§
impl<'a> Freeze for CommandState<'a>
impl<'a> !RefUnwindSafe for CommandState<'a>
impl<'a> Send for CommandState<'a>
impl<'a> Sync for CommandState<'a>
impl<'a> Unpin for CommandState<'a>
impl<'a> !UnwindSafe for CommandState<'a>
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
§impl<T> Pointable for T
impl<T> Pointable for T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 152 bytes
Size for each variant:
Cached
: 64 bytesDeferred
: 152 bytes