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