pub struct AdminDatastoreGetGcResponseData {Show 18 fields
pub cache_stats: Option<Box<AdminDatastoreGetGcResponseDataCacheStats>>,
pub disk_bytes: i64,
pub disk_chunks: i64,
pub duration: Option<i64>,
pub index_data_bytes: i64,
pub index_file_count: i64,
pub last_run_endtime: Option<i64>,
pub last_run_state: Option<String>,
pub next_run: Option<i64>,
pub pending_bytes: i64,
pub pending_chunks: i64,
pub removed_bad: i64,
pub removed_bytes: i64,
pub removed_chunks: i64,
pub schedule: Option<String>,
pub still_bad: i64,
pub store: String,
pub upid: Option<String>,
}Fields§
§cache_stats: Option<Box<AdminDatastoreGetGcResponseDataCacheStats>>§disk_bytes: i64Bytes used on disk.
disk_chunks: i64Chunks used on disk.
duration: Option<i64>Duration of last gc run
index_data_bytes: i64Sum of bytes referred by index files.
index_file_count: i64Number of processed index files.
last_run_endtime: Option<i64>Endtime of the last gc run
last_run_state: Option<String>State of the last gc run
next_run: Option<i64>Time of the next gc run
pending_bytes: i64Sum of pending bytes (pending removal - kept for safety).
pending_chunks: i64Number of pending chunks (pending removal - kept for safety).
removed_bad: i64Number of chunks marked as .bad by verify that have been removed by GC.
removed_bytes: i64Sum of removed bytes.
removed_chunks: i64Number of removed chunks.
schedule: Option<String>Schedule of the gc job
still_bad: i64Number of chunks still marked as .bad after garbage collection.
store: StringDatastore
upid: Option<String>Unique Process/Task Identifier
Implementations§
Trait Implementations§
Source§impl Clone for AdminDatastoreGetGcResponseData
impl Clone for AdminDatastoreGetGcResponseData
Source§fn clone(&self) -> AdminDatastoreGetGcResponseData
fn clone(&self) -> AdminDatastoreGetGcResponseData
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 AdminDatastoreGetGcResponseData
impl Default for AdminDatastoreGetGcResponseData
Source§fn default() -> AdminDatastoreGetGcResponseData
fn default() -> AdminDatastoreGetGcResponseData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdminDatastoreGetGcResponseData
impl<'de> Deserialize<'de> for AdminDatastoreGetGcResponseData
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 AdminDatastoreGetGcResponseData
impl PartialEq for AdminDatastoreGetGcResponseData
Source§fn eq(&self, other: &AdminDatastoreGetGcResponseData) -> bool
fn eq(&self, other: &AdminDatastoreGetGcResponseData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AdminDatastoreGetGcResponseData
Auto Trait Implementations§
impl Freeze for AdminDatastoreGetGcResponseData
impl RefUnwindSafe for AdminDatastoreGetGcResponseData
impl Send for AdminDatastoreGetGcResponseData
impl Sync for AdminDatastoreGetGcResponseData
impl Unpin for AdminDatastoreGetGcResponseData
impl UnsafeUnpin for AdminDatastoreGetGcResponseData
impl UnwindSafe for AdminDatastoreGetGcResponseData
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