pub struct ComposeUpResult {
pub networks: Vec<String>,
pub volumes: Vec<String>,
pub containers: Vec<String>,
}Expand description
Result of a compose up operation
Fields§
§networks: Vec<String>IDs of created networks
volumes: Vec<String>Names of created volumes
containers: Vec<String>IDs of created/started containers
Trait Implementations§
Source§impl Clone for ComposeUpResult
impl Clone for ComposeUpResult
Source§fn clone(&self) -> ComposeUpResult
fn clone(&self) -> ComposeUpResult
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 Debug for ComposeUpResult
impl Debug for ComposeUpResult
Auto Trait Implementations§
impl Freeze for ComposeUpResult
impl RefUnwindSafe for ComposeUpResult
impl Send for ComposeUpResult
impl Sync for ComposeUpResult
impl Unpin for ComposeUpResult
impl UnwindSafe for ComposeUpResult
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