pub struct AdminDatastoreCreateVerifyRequest {
pub backup_id: Option<String>,
pub backup_time: Option<i64>,
pub backup_type: Option<PbsBackupTypeEnum>,
pub ignore_verified: Option<bool>,
pub max_depth: Option<i32>,
pub ns: Option<String>,
pub outdated_after: Option<i64>,
pub read_threads: Option<i32>,
pub verify_threads: Option<i32>,
}Fields§
§backup_id: Option<String>Backup ID.
backup_time: Option<i64>Backup time (Unix epoch.)
backup_type: Option<PbsBackupTypeEnum>Backup types.
ignore_verified: Option<bool>Do not verify backups that are already verified if their verification is not outdated.
max_depth: Option<i32>How many levels of namespaces should be operated on (0 == no recursion)
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.
verify_threads: Option<i32>The number of threads to use for verifying chunks in verify job.
Implementations§
Trait Implementations§
Source§impl Clone for AdminDatastoreCreateVerifyRequest
impl Clone for AdminDatastoreCreateVerifyRequest
Source§fn clone(&self) -> AdminDatastoreCreateVerifyRequest
fn clone(&self) -> AdminDatastoreCreateVerifyRequest
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 AdminDatastoreCreateVerifyRequest
impl Default for AdminDatastoreCreateVerifyRequest
Source§fn default() -> AdminDatastoreCreateVerifyRequest
fn default() -> AdminDatastoreCreateVerifyRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdminDatastoreCreateVerifyRequest
impl<'de> Deserialize<'de> for AdminDatastoreCreateVerifyRequest
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 AdminDatastoreCreateVerifyRequest
impl PartialEq for AdminDatastoreCreateVerifyRequest
Source§fn eq(&self, other: &AdminDatastoreCreateVerifyRequest) -> bool
fn eq(&self, other: &AdminDatastoreCreateVerifyRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AdminDatastoreCreateVerifyRequest
Auto Trait Implementations§
impl Freeze for AdminDatastoreCreateVerifyRequest
impl RefUnwindSafe for AdminDatastoreCreateVerifyRequest
impl Send for AdminDatastoreCreateVerifyRequest
impl Sync for AdminDatastoreCreateVerifyRequest
impl Unpin for AdminDatastoreCreateVerifyRequest
impl UnsafeUnpin for AdminDatastoreCreateVerifyRequest
impl UnwindSafe for AdminDatastoreCreateVerifyRequest
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