Struct ostree_ext::container::store::ExportToOCIOpts
source · #[non_exhaustive]pub struct ExportToOCIOpts {
pub skip_compression: bool,
pub authfile: Option<PathBuf>,
pub progress_to_stdout: bool,
}Expand description
Options controlling commit export into OCI
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.skip_compression: boolIf true, do not perform gzip compression of the tar layers.
authfile: Option<PathBuf>Path to Docker-formatted authentication file.
progress_to_stdout: boolOutput progress to stdout
Trait Implementations§
source§impl Clone for ExportToOCIOpts
impl Clone for ExportToOCIOpts
source§fn clone(&self) -> ExportToOCIOpts
fn clone(&self) -> ExportToOCIOpts
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 moresource§impl Debug for ExportToOCIOpts
impl Debug for ExportToOCIOpts
source§impl Default for ExportToOCIOpts
impl Default for ExportToOCIOpts
source§fn default() -> ExportToOCIOpts
fn default() -> ExportToOCIOpts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExportToOCIOpts
impl RefUnwindSafe for ExportToOCIOpts
impl Send for ExportToOCIOpts
impl Sync for ExportToOCIOpts
impl Unpin for ExportToOCIOpts
impl UnwindSafe for ExportToOCIOpts
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