pub struct HealStatus {
pub heal_id: String,
pub healing: bool,
pub bucket: String,
pub object: String,
pub items_scanned: u64,
pub items_healed: u64,
pub items_failed: u64,
pub bytes_scanned: u64,
pub bytes_healed: u64,
pub started: Option<String>,
pub last_update: Option<String>,
}Expand description
Status of a heal operation
Fields§
§heal_id: StringHeal ID
healing: boolWhether healing is in progress
bucket: StringCurrent bucket being healed
object: StringCurrent object being healed
items_scanned: u64Number of items scanned
items_healed: u64Number of items healed
items_failed: u64Number of items failed
bytes_scanned: u64Bytes scanned
bytes_healed: u64Bytes healed
started: Option<String>Start time
last_update: Option<String>Last update time
Trait Implementations§
Source§impl Clone for HealStatus
impl Clone for HealStatus
Source§fn clone(&self) -> HealStatus
fn clone(&self) -> HealStatus
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 HealStatus
impl Debug for HealStatus
Source§impl Default for HealStatus
impl Default for HealStatus
Source§fn default() -> HealStatus
fn default() -> HealStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HealStatus
impl<'de> Deserialize<'de> for HealStatus
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
Auto Trait Implementations§
impl Freeze for HealStatus
impl RefUnwindSafe for HealStatus
impl Send for HealStatus
impl Sync for HealStatus
impl Unpin for HealStatus
impl UnwindSafe for HealStatus
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