pub struct QuickVerification {
pub schedule: Option<CronSpec>,
pub parallel: Option<u32>,
pub file_parallelism: Option<u32>,
pub file_queue_length: Option<u32>,
pub max_errors: Option<u32>,
}Expand description
Quick (blob-level) verification tier: schedule for the frequent kopia snapshot verify.
A wrapper so this tier’s shape matches deep — the cron lives at
quick.schedule.cron (GitHub #174). schedule is deliberately Option for
decode-tolerance: an already-persisted old-shape quick: { cron: ... } object
still decodes (serde ignores the unknown cron key) as schedule: None rather
than failing typed serde — a hard decode failure would wedge the SnapshotPolicy
reflector and poison SnapshotPolicy admission cluster-wide. New writes with the
old shape are rejected at admission by the shared validator, which points at the
move. A persisted schedule: None means the quick tier is disabled until updated.
Fields§
§schedule: Option<CronSpec>Cron + jitter + timezone for the frequent blob-level verify; absent ⇒ quick tier disabled.
parallel: Option<u32>--parallel: verification parallelism (kopia default: 8).
file_parallelism: Option<u32>--file-parallelism: parallelism for file verification (kopia default: unset).
file_queue_length: Option<u32>--file-queue-length: queue length for file verification (kopia default: 20000).
max_errors: Option<u32>--max-errors: stop after this many errors (kopia default: 0, meaning stop
at the first error).
Trait Implementations§
Source§impl Clone for QuickVerification
impl Clone for QuickVerification
Source§fn clone(&self) -> QuickVerification
fn clone(&self) -> QuickVerification
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for QuickVerification
impl Debug for QuickVerification
Source§impl Default for QuickVerification
impl Default for QuickVerification
Source§fn default() -> QuickVerification
fn default() -> QuickVerification
Source§impl<'de> Deserialize<'de> for QuickVerification
impl<'de> Deserialize<'de> for QuickVerification
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl JsonSchema for QuickVerification
impl JsonSchema for QuickVerification
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
$ref keyword. Read moreSource§impl PartialEq for QuickVerification
impl PartialEq for QuickVerification
Source§fn eq(&self, other: &QuickVerification) -> bool
fn eq(&self, other: &QuickVerification) -> bool
self and other values to be equal, and is used by ==.Source§impl Serialize for QuickVerification
impl Serialize for QuickVerification
impl Eq for QuickVerification
impl StructuralPartialEq for QuickVerification
Auto Trait Implementations§
impl Freeze for QuickVerification
impl RefUnwindSafe for QuickVerification
impl Send for QuickVerification
impl Sync for QuickVerification
impl Unpin for QuickVerification
impl UnsafeUnpin for QuickVerification
impl UnwindSafe for QuickVerification
Blanket Implementations§
§impl<T> AnyExt for T
impl<T> AnyExt for T
§fn downcast_ref<T>(this: &Self) -> Option<&T>where
T: Any,
fn downcast_ref<T>(this: &Self) -> Option<&T>where
T: Any,
T behind reference§fn downcast_mut<T>(this: &mut Self) -> Option<&mut T>where
T: Any,
fn downcast_mut<T>(this: &mut Self) -> Option<&mut T>where
T: Any,
T behind mutable reference§fn downcast_rc<T>(this: Rc<Self>) -> Result<Rc<T>, Rc<Self>>where
T: Any,
fn downcast_rc<T>(this: Rc<Self>) -> Result<Rc<T>, Rc<Self>>where
T: Any,
T behind Rc pointer§fn downcast_arc<T>(this: Arc<Self>) -> Result<Arc<T>, Arc<Self>>where
T: Any,
fn downcast_arc<T>(this: Arc<Self>) -> Result<Arc<T>, Arc<Self>>where
T: Any,
T behind Arc pointer§fn downcast_box<T>(this: Box<Self>) -> Result<Box<T>, Box<Self>>where
T: Any,
fn downcast_box<T>(this: Box<Self>) -> Result<Box<T>, Box<Self>>where
T: Any,
T behind Box pointer§fn downcast_move<T>(this: Self) -> Option<T>
fn downcast_move<T>(this: Self) -> Option<T>
Self to T,
useful only in generic context as a workaround for specializationSource§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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, X> CoerceTo<T> for Xwhere
T: CoerceFrom<X> + ?Sized,
impl<T, X> CoerceTo<T> for Xwhere
T: CoerceFrom<X> + ?Sized,
fn coerce_rc_to(self: Rc<X>) -> Rc<T>
fn coerce_box_to(self: Box<X>) -> Box<T>
fn coerce_ref_to(&self) -> &T
fn coerce_mut_to(&mut self) -> &mut T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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>
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>
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