pub enum ImageBaseIms {
NameType {
name: String,
type: String,
},
IdType {
id: String,
type: String,
},
BackwardCompatible {
is_recipe: Option<bool>,
id: String,
},
}Expand description
Base IMS image reference used in newer SAT file format.
Variants§
NameType
Image identified by name and type string.
IdType
Image identified by UUID and type string.
BackwardCompatible
Older format with UUID and optional is_recipe flag.
Trait Implementations§
Source§impl Debug for ImageBaseIms
impl Debug for ImageBaseIms
Source§impl<'de> Deserialize<'de> for ImageBaseIms
impl<'de> Deserialize<'de> for ImageBaseIms
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ImageBaseIms
impl RefUnwindSafe for ImageBaseIms
impl Send for ImageBaseIms
impl Sync for ImageBaseIms
impl Unpin for ImageBaseIms
impl UnsafeUnpin for ImageBaseIms
impl UnwindSafe for ImageBaseIms
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