pub struct BuildxCreateResult {
pub name: String,
pub output: String,
pub success: bool,
}Expand description
Result of buildx create command
Fields§
§name: StringThe name of the created builder
output: StringRaw output from the command
success: boolWhether the command succeeded
Trait Implementations§
Source§impl Clone for BuildxCreateResult
impl Clone for BuildxCreateResult
Source§fn clone(&self) -> BuildxCreateResult
fn clone(&self) -> BuildxCreateResult
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 BuildxCreateResult
impl RefUnwindSafe for BuildxCreateResult
impl Send for BuildxCreateResult
impl Sync for BuildxCreateResult
impl Unpin for BuildxCreateResult
impl UnwindSafe for BuildxCreateResult
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