pub struct AuditStorageSnapshot {
pub provider: String,
pub hot_bytes: u64,
pub free_bytes: Option<u64>,
pub pending_records: u64,
pub pending_bytes: u64,
pub oldest_pending_seconds: Option<u64>,
pub quarantined_records: u64,
pub archive_watermark: Option<AuditCursor>,
pub segments: Vec<AuditSegmentStatus>,
}Fields§
§provider: String§hot_bytes: u64§free_bytes: Option<u64>§pending_records: u64§pending_bytes: u64§oldest_pending_seconds: Option<u64>§quarantined_records: u64§archive_watermark: Option<AuditCursor>§segments: Vec<AuditSegmentStatus>Trait Implementations§
Source§impl Clone for AuditStorageSnapshot
impl Clone for AuditStorageSnapshot
Source§fn clone(&self) -> AuditStorageSnapshot
fn clone(&self) -> AuditStorageSnapshot
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 AuditStorageSnapshot
impl Debug for AuditStorageSnapshot
Source§impl<'de> Deserialize<'de> for AuditStorageSnapshot
impl<'de> Deserialize<'de> for AuditStorageSnapshot
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 AuditStorageSnapshot
Source§impl PartialEq for AuditStorageSnapshot
impl PartialEq for AuditStorageSnapshot
Source§impl Serialize for AuditStorageSnapshot
impl Serialize for AuditStorageSnapshot
impl StructuralPartialEq for AuditStorageSnapshot
Auto Trait Implementations§
impl Freeze for AuditStorageSnapshot
impl RefUnwindSafe for AuditStorageSnapshot
impl Send for AuditStorageSnapshot
impl Sync for AuditStorageSnapshot
impl Unpin for AuditStorageSnapshot
impl UnsafeUnpin for AuditStorageSnapshot
impl UnwindSafe for AuditStorageSnapshot
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