pub struct BuildxRmResult {
pub names: Vec<String>,
pub output: String,
pub success: bool,
}Expand description
Result of buildx rm command
Fields§
§names: Vec<String>The names of the builders that were removed
output: StringRaw output from the command
success: boolWhether the command succeeded
Trait Implementations§
Source§impl Clone for BuildxRmResult
impl Clone for BuildxRmResult
Source§fn clone(&self) -> BuildxRmResult
fn clone(&self) -> BuildxRmResult
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 BuildxRmResult
impl RefUnwindSafe for BuildxRmResult
impl Send for BuildxRmResult
impl Sync for BuildxRmResult
impl Unpin for BuildxRmResult
impl UnwindSafe for BuildxRmResult
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