pub struct BuildxStopResult {
pub name: Option<String>,
pub output: String,
pub success: bool,
}Expand description
Result of buildx stop command
Fields§
§name: Option<String>The name of the builder that was stopped
output: StringRaw output from the command
success: boolWhether the command succeeded
Trait Implementations§
Source§impl Clone for BuildxStopResult
impl Clone for BuildxStopResult
Source§fn clone(&self) -> BuildxStopResult
fn clone(&self) -> BuildxStopResult
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 moreAuto Trait Implementations§
impl Freeze for BuildxStopResult
impl RefUnwindSafe for BuildxStopResult
impl Send for BuildxStopResult
impl Sync for BuildxStopResult
impl Unpin for BuildxStopResult
impl UnwindSafe for BuildxStopResult
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