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