pub struct BuildxInspectResult {
pub name: Option<String>,
pub driver: Option<String>,
pub status: Option<String>,
pub platforms: Vec<String>,
pub output: String,
pub success: bool,
}Expand description
Result of buildx inspect command
Fields§
§name: Option<String>The name of the builder
driver: Option<String>The driver used by the builder
status: Option<String>The status of the builder
platforms: Vec<String>Platforms supported by the builder
output: StringRaw output from the command
success: boolWhether the command succeeded
Trait Implementations§
Source§impl Clone for BuildxInspectResult
impl Clone for BuildxInspectResult
Source§fn clone(&self) -> BuildxInspectResult
fn clone(&self) -> BuildxInspectResult
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 BuildxInspectResult
impl RefUnwindSafe for BuildxInspectResult
impl Send for BuildxInspectResult
impl Sync for BuildxInspectResult
impl Unpin for BuildxInspectResult
impl UnwindSafe for BuildxInspectResult
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