pub struct PreparePlan {
pub command: String,
pub repo: String,
pub reference: String,
pub env: Vec<(String, String)>,
}Expand description
A resolved prepare step: the command, the pinned source, and the fully
interpolated env it runs with. resolve_prepare_env returns None when
the service declares no prepare hook.
Fields§
§command: String§repo: String§reference: String§env: Vec<(String, String)>Trait Implementations§
Source§impl Clone for PreparePlan
impl Clone for PreparePlan
Source§fn clone(&self) -> PreparePlan
fn clone(&self) -> PreparePlan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PreparePlan
impl RefUnwindSafe for PreparePlan
impl Send for PreparePlan
impl Sync for PreparePlan
impl Unpin for PreparePlan
impl UnsafeUnpin for PreparePlan
impl UnwindSafe for PreparePlan
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