pub struct ComposeUnpauseCommand {
pub config: ComposeConfig,
pub services: Vec<String>,
}
Expand description
Docker Compose unpause command
Unpause services.
Fields§
§config: ComposeConfig
Base configuration
services: Vec<String>
Services to unpause
Implementations§
Source§impl ComposeUnpauseCommand
impl ComposeUnpauseCommand
Trait Implementations§
Source§impl Clone for ComposeUnpauseCommand
impl Clone for ComposeUnpauseCommand
Source§fn clone(&self) -> ComposeUnpauseCommand
fn clone(&self) -> ComposeUnpauseCommand
Returns a duplicate 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 ComposeCommandV2 for ComposeUnpauseCommand
impl ComposeCommandV2 for ComposeUnpauseCommand
Source§type Output = UnpauseResult
type Output = UnpauseResult
The output type this command produces
Source§fn get_config(&self) -> &ComposeConfig
fn get_config(&self) -> &ComposeConfig
Get the compose configuration
Source§fn get_config_mut(&mut self) -> &mut ComposeConfig
fn get_config_mut(&mut self) -> &mut ComposeConfig
Get mutable compose configuration
Source§fn execute_compose<'life0, 'async_trait>(
&'life0 self,
args: Vec<String>,
) -> Pin<Box<dyn Future<Output = Result<Self::Output>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_compose<'life0, 'async_trait>(
&'life0 self,
args: Vec<String>,
) -> Pin<Box<dyn Future<Output = Result<Self::Output>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Execute compose command with given arguments
Source§impl Debug for ComposeUnpauseCommand
impl Debug for ComposeUnpauseCommand
Source§impl Default for ComposeUnpauseCommand
impl Default for ComposeUnpauseCommand
Source§fn default() -> ComposeUnpauseCommand
fn default() -> ComposeUnpauseCommand
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ComposeUnpauseCommand
impl RefUnwindSafe for ComposeUnpauseCommand
impl Send for ComposeUnpauseCommand
impl Sync for ComposeUnpauseCommand
impl Unpin for ComposeUnpauseCommand
impl UnwindSafe for ComposeUnpauseCommand
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