pub struct ImageDetails {
pub name: String,
pub tag: String,
pub user: Option<String>,
pub env: Vec<String>,
pub cmd: Vec<String>,
pub working_dir: Option<String>,
pub labels: HashMap<String, String>,
pub arch: String,
pub created: String,
}
Fields§
§name: String
§tag: String
§user: Option<String>
§env: Vec<String>
§cmd: Vec<String>
§working_dir: Option<String>
§labels: HashMap<String, String>
§arch: String
§created: String
Trait Implementations§
Source§impl Clone for ImageDetails
impl Clone for ImageDetails
Source§fn clone(&self) -> ImageDetails
fn clone(&self) -> ImageDetails
Returns a copy 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 ImageDetails
impl RefUnwindSafe for ImageDetails
impl Send for ImageDetails
impl Sync for ImageDetails
impl Unpin for ImageDetails
impl UnwindSafe for ImageDetails
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