Struct ostree_ext::tar::TarImportOptions
source · #[non_exhaustive]pub struct TarImportOptions {
pub remote: Option<String>,
}Expand description
Configuration for tar import.
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.remote: Option<String>Name of the remote to use for signature verification.
Trait Implementations§
source§impl Debug for TarImportOptions
impl Debug for TarImportOptions
source§impl Default for TarImportOptions
impl Default for TarImportOptions
source§fn default() -> TarImportOptions
fn default() -> TarImportOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TarImportOptions
impl RefUnwindSafe for TarImportOptions
impl Send for TarImportOptions
impl Sync for TarImportOptions
impl Unpin for TarImportOptions
impl UnwindSafe for TarImportOptions
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