pub struct MaintenanceRunRequest {
pub tenant_id: Option<String>,
pub namespace: Option<String>,
pub dry_run: bool,
pub reason: String,
pub run_integrity_check: bool,
pub run_repair: bool,
pub run_compaction: bool,
pub run_synthesis: bool,
pub remove_stale_idempotency_keys: bool,
pub rebuild_missing_idempotency_keys: bool,
}Fields§
§tenant_id: Option<String>§namespace: Option<String>§dry_run: bool§reason: String§run_integrity_check: bool§run_repair: bool§run_compaction: bool§run_synthesis: bool§remove_stale_idempotency_keys: bool§rebuild_missing_idempotency_keys: boolTrait Implementations§
Source§impl Clone for MaintenanceRunRequest
impl Clone for MaintenanceRunRequest
Source§fn clone(&self) -> MaintenanceRunRequest
fn clone(&self) -> MaintenanceRunRequest
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 Debug for MaintenanceRunRequest
impl Debug for MaintenanceRunRequest
Source§impl Default for MaintenanceRunRequest
impl Default for MaintenanceRunRequest
Source§impl<'de> Deserialize<'de> for MaintenanceRunRequestwhere
MaintenanceRunRequest: Default,
impl<'de> Deserialize<'de> for MaintenanceRunRequestwhere
MaintenanceRunRequest: Default,
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
impl Eq for MaintenanceRunRequest
Source§impl PartialEq for MaintenanceRunRequest
impl PartialEq for MaintenanceRunRequest
Source§fn eq(&self, other: &MaintenanceRunRequest) -> bool
fn eq(&self, other: &MaintenanceRunRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MaintenanceRunRequest
impl Serialize for MaintenanceRunRequest
impl StructuralPartialEq for MaintenanceRunRequest
Auto Trait Implementations§
impl Freeze for MaintenanceRunRequest
impl RefUnwindSafe for MaintenanceRunRequest
impl Send for MaintenanceRunRequest
impl Sync for MaintenanceRunRequest
impl Unpin for MaintenanceRunRequest
impl UnsafeUnpin for MaintenanceRunRequest
impl UnwindSafe for MaintenanceRunRequest
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