pub struct DockerExecutor { /* private fields */ }
Expand description
Build a docker image with bollard and start it up
Implementations§
Source§impl DockerExecutor
impl DockerExecutor
pub fn with_context_path(&mut self, path: impl Into<PathBuf>) -> &mut Self
pub fn with_image_name(&mut self, name: impl Into<String>) -> &mut Self
pub fn with_container_uuid(&mut self, uuid: impl Into<Uuid>) -> &mut Self
pub fn with_dockerfile(&mut self, path: impl Into<PathBuf>) -> &mut Self
pub fn with_working_dir(&mut self, path: impl Into<PathBuf>) -> &mut Self
pub async fn start(self) -> Result<RunningDockerExecutor, DockerExecutorError>
Trait Implementations§
Source§impl Clone for DockerExecutor
impl Clone for DockerExecutor
Source§fn clone(&self) -> DockerExecutor
fn clone(&self) -> DockerExecutor
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DockerExecutor
impl Debug for DockerExecutor
Auto Trait Implementations§
impl Freeze for DockerExecutor
impl RefUnwindSafe for DockerExecutor
impl Send for DockerExecutor
impl Sync for DockerExecutor
impl Unpin for DockerExecutor
impl UnwindSafe for DockerExecutor
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more