#[non_exhaustive]pub enum RuntimeImplementation {
Docker,
Podman,
Other(Identifier),
}Expand description
Container implementation from which a snapshot was obtained.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Docker
Docker Engine or a compatible Docker API implementation.
Podman
Podman or the Podman service API.
Other(Identifier)
Another explicitly named runtime implementation.
Implementations§
Trait Implementations§
Source§impl Clone for RuntimeImplementation
impl Clone for RuntimeImplementation
Source§fn clone(&self) -> RuntimeImplementation
fn clone(&self) -> RuntimeImplementation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RuntimeImplementation
impl Debug for RuntimeImplementation
impl Eq for RuntimeImplementation
Source§impl PartialEq for RuntimeImplementation
impl PartialEq for RuntimeImplementation
impl StructuralPartialEq for RuntimeImplementation
Auto Trait Implementations§
impl Freeze for RuntimeImplementation
impl RefUnwindSafe for RuntimeImplementation
impl Send for RuntimeImplementation
impl Sync for RuntimeImplementation
impl Unpin for RuntimeImplementation
impl UnsafeUnpin for RuntimeImplementation
impl UnwindSafe for RuntimeImplementation
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