pub enum ExportSource {
Container(String),
Rootfs(String),
}Expand description
Source for an export operation.
Variants§
Container(String)
Export a container’s merged overlayfs view.
Rootfs(String)
Export an imported rootfs from the catalogue.
Auto Trait Implementations§
impl Freeze for ExportSource
impl RefUnwindSafe for ExportSource
impl Send for ExportSource
impl Sync for ExportSource
impl Unpin for ExportSource
impl UnsafeUnpin for ExportSource
impl UnwindSafe for ExportSource
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