Struct rustainers::compose::RunnableComposeContainers
source · #[non_exhaustive]pub struct RunnableComposeContainers<P> { /* private fields */ }Expand description
Contains configuration require to run compose containers
See existings compose images for real usages.
Implementations§
source§impl<P> RunnableComposeContainers<P>
impl<P> RunnableComposeContainers<P>
sourcepub fn builder() -> RunnableComposeContainersBuilder<P, ((), (), ())>
pub fn builder() -> RunnableComposeContainersBuilder<P, ((), (), ())>
Create a builder for building RunnableComposeContainers.
On the builder, call .compose_path(...), .wait_strategies(...)(optional), .port_mappings(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of RunnableComposeContainers.
Trait Implementations§
source§impl<P: Clone> Clone for RunnableComposeContainers<P>
impl<P: Clone> Clone for RunnableComposeContainers<P>
source§fn clone(&self) -> RunnableComposeContainers<P>
fn clone(&self) -> RunnableComposeContainers<P>
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 moreAuto Trait Implementations§
impl<P> Freeze for RunnableComposeContainers<P>where
P: Freeze,
impl<P> !RefUnwindSafe for RunnableComposeContainers<P>
impl<P> Send for RunnableComposeContainers<P>where
P: Send,
impl<P> Sync for RunnableComposeContainers<P>where
P: Sync,
impl<P> Unpin for RunnableComposeContainers<P>where
P: Unpin,
impl<P> !UnwindSafe for RunnableComposeContainers<P>
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