pub struct PullOptions {
pub pull_policy: PullPolicy,
pub force: bool,
pub materialization: RootfsMaterialization,
}Expand description
Options for Registry::pull().
Fields§
§pull_policy: PullPolicyControls when the registry is contacted.
force: boolRe-download blobs and re-materialize rootfs images even if cached.
materialization: RootfsMaterializationFilesystem representations to prepare. Defaults to RootfsMaterialization::Layered.
Trait Implementations§
Source§impl Clone for PullOptions
impl Clone for PullOptions
Source§impl Debug for PullOptions
impl Debug for PullOptions
Auto Trait Implementations§
impl Freeze for PullOptions
impl RefUnwindSafe for PullOptions
impl Send for PullOptions
impl Sync for PullOptions
impl Unpin for PullOptions
impl UnsafeUnpin for PullOptions
impl UnwindSafe for PullOptions
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