pub enum ResumeMode {
Overwrite,
Resume,
Verify,
}Expand description
Behaviour selector for resumable pyramid generation.
ResumeMode::Overwrite— wipe any pre-existing output and start fresh. This is the default and matches the behaviour of the non-resumable entry points.ResumeMode::Resume— read the on-disk checkpoint, skip tiles that are already recorded as completed, and write only what remains. Refuses to proceed if the storedplan_hashdisagrees with the current plan.ResumeMode::Verify— do not write anything. Walk the plan and check that every tile is present and internally consistent on disk. Useful for post-hoc validation of a finished job.
Variants§
Overwrite
Discard pre-existing output and regenerate every tile.
Resume
Skip tiles already recorded in the on-disk checkpoint.
Verify
Verify on-disk tiles without producing new output.
Trait Implementations§
Source§impl Clone for ResumeMode
impl Clone for ResumeMode
Source§fn clone(&self) -> ResumeMode
fn clone(&self) -> ResumeMode
Returns a duplicate 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 ResumeMode
impl Debug for ResumeMode
Source§impl Default for ResumeMode
impl Default for ResumeMode
Source§fn default() -> ResumeMode
fn default() -> ResumeMode
Returns the “default value” for a type. Read more
Source§impl Hash for ResumeMode
impl Hash for ResumeMode
Source§impl PartialEq for ResumeMode
impl PartialEq for ResumeMode
impl Copy for ResumeMode
impl Eq for ResumeMode
impl StructuralPartialEq for ResumeMode
Auto Trait Implementations§
impl Freeze for ResumeMode
impl RefUnwindSafe for ResumeMode
impl Send for ResumeMode
impl Sync for ResumeMode
impl Unpin for ResumeMode
impl UnsafeUnpin for ResumeMode
impl UnwindSafe for ResumeMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more