pub struct ProbeInput {
pub image: String,
pub runner_os: RunnerOs,
pub tools: Vec<String>,
pub commands: Vec<String>,
pub allow_pull: bool,
pub docker_bin: Option<Utf8PathBuf>,
}Fields§
§image: String§runner_os: RunnerOs§tools: Vec<String>§commands: Vec<String>§allow_pull: bool§docker_bin: Option<Utf8PathBuf>Trait Implementations§
Source§impl Clone for ProbeInput
impl Clone for ProbeInput
Source§fn clone(&self) -> ProbeInput
fn clone(&self) -> ProbeInput
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 ProbeInput
impl RefUnwindSafe for ProbeInput
impl Send for ProbeInput
impl Sync for ProbeInput
impl Unpin for ProbeInput
impl UnsafeUnpin for ProbeInput
impl UnwindSafe for ProbeInput
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