#[non_exhaustive]pub enum ContainerFormat {
Ewf,
Vmdk,
Vhdx,
Vhd,
Qcow2,
Dmg,
Aff4,
Ad1,
Dar,
Raw,
Auto,
}Expand description
The outer container/image format.
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.
Ewf
Vmdk
Vhdx
Vhd
Qcow2
Dmg
Aff4
Ad1
Dar
Raw
A flat raw/dd image (no wrapper).
Auto
Sniff the format at resolve time.
Trait Implementations§
Source§impl Clone for ContainerFormat
impl Clone for ContainerFormat
Source§fn clone(&self) -> ContainerFormat
fn clone(&self) -> ContainerFormat
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 moreimpl Copy for ContainerFormat
Source§impl Debug for ContainerFormat
impl Debug for ContainerFormat
impl Eq for ContainerFormat
Source§impl Hash for ContainerFormat
impl Hash for ContainerFormat
Source§impl PartialEq for ContainerFormat
impl PartialEq for ContainerFormat
impl StructuralPartialEq for ContainerFormat
Auto Trait Implementations§
impl Freeze for ContainerFormat
impl RefUnwindSafe for ContainerFormat
impl Send for ContainerFormat
impl Sync for ContainerFormat
impl Unpin for ContainerFormat
impl UnsafeUnpin for ContainerFormat
impl UnwindSafe for ContainerFormat
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