pub struct AdminVerifyGetVerifyResponseDataInner {Show 14 fields
pub comment: Option<String>,
pub id: String,
pub ignore_verified: Option<bool>,
pub last_run_endtime: Option<i64>,
pub last_run_state: Option<String>,
pub last_run_upid: Option<String>,
pub max_depth: Option<i32>,
pub next_run: Option<i64>,
pub ns: Option<String>,
pub outdated_after: Option<i64>,
pub read_threads: Option<i32>,
pub schedule: Option<String>,
pub store: String,
pub verify_threads: Option<i32>,
}Fields§
§comment: Option<String>Comment.
id: StringJob ID.
ignore_verified: Option<bool>Do not verify backups that are already verified if their verification is not outdated.
last_run_endtime: Option<i64>Endtime of the last run.
last_run_state: Option<String>Result of the last run.
last_run_upid: Option<String>Task UPID of the last run.
max_depth: Option<i32>How many levels of namespaces should be operated on (0 == no recursion)
next_run: Option<i64>Estimated time of the next run (UNIX epoch).
ns: Option<String>Namespace.
outdated_after: Option<i64>Days after that a verification becomes outdated. (0 is deprecated)’
read_threads: Option<i32>The number of threads to use for reading chunks in verify job.
schedule: Option<String>Run verify job at specified schedule.
store: StringDatastore name.
verify_threads: Option<i32>The number of threads to use for verifying chunks in verify job.
Implementations§
Source§impl AdminVerifyGetVerifyResponseDataInner
impl AdminVerifyGetVerifyResponseDataInner
pub fn new(id: String, store: String) -> AdminVerifyGetVerifyResponseDataInner
Trait Implementations§
Source§impl Clone for AdminVerifyGetVerifyResponseDataInner
impl Clone for AdminVerifyGetVerifyResponseDataInner
Source§fn clone(&self) -> AdminVerifyGetVerifyResponseDataInner
fn clone(&self) -> AdminVerifyGetVerifyResponseDataInner
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for AdminVerifyGetVerifyResponseDataInner
impl Default for AdminVerifyGetVerifyResponseDataInner
Source§fn default() -> AdminVerifyGetVerifyResponseDataInner
fn default() -> AdminVerifyGetVerifyResponseDataInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdminVerifyGetVerifyResponseDataInner
impl<'de> Deserialize<'de> for AdminVerifyGetVerifyResponseDataInner
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AdminVerifyGetVerifyResponseDataInner
impl PartialEq for AdminVerifyGetVerifyResponseDataInner
Source§fn eq(&self, other: &AdminVerifyGetVerifyResponseDataInner) -> bool
fn eq(&self, other: &AdminVerifyGetVerifyResponseDataInner) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AdminVerifyGetVerifyResponseDataInner
Auto Trait Implementations§
impl Freeze for AdminVerifyGetVerifyResponseDataInner
impl RefUnwindSafe for AdminVerifyGetVerifyResponseDataInner
impl Send for AdminVerifyGetVerifyResponseDataInner
impl Sync for AdminVerifyGetVerifyResponseDataInner
impl Unpin for AdminVerifyGetVerifyResponseDataInner
impl UnsafeUnpin for AdminVerifyGetVerifyResponseDataInner
impl UnwindSafe for AdminVerifyGetVerifyResponseDataInner
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