pub struct CheckpointOutcomeRecordedPayload {
pub wal_pages: u64,
pub warn_pages: u64,
pub high_water_pages: u64,
pub truncate_high_water_pages: u64,
pub above_warn: bool,
pub above_high_water: bool,
pub above_truncate_high_water: bool,
}Expand description
Payload for khive_types::EventKind::CheckpointOutcomeRecorded.
Fields§
§wal_pages: u64§warn_pages: u64§high_water_pages: u64§truncate_high_water_pages: u64§above_warn: bool§above_high_water: bool§above_truncate_high_water: boolTrait Implementations§
Source§impl Clone for CheckpointOutcomeRecordedPayload
impl Clone for CheckpointOutcomeRecordedPayload
Source§fn clone(&self) -> CheckpointOutcomeRecordedPayload
fn clone(&self) -> CheckpointOutcomeRecordedPayload
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<'de> Deserialize<'de> for CheckpointOutcomeRecordedPayload
impl<'de> Deserialize<'de> for CheckpointOutcomeRecordedPayload
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 StructuralPartialEq for CheckpointOutcomeRecordedPayload
Auto Trait Implementations§
impl Freeze for CheckpointOutcomeRecordedPayload
impl RefUnwindSafe for CheckpointOutcomeRecordedPayload
impl Send for CheckpointOutcomeRecordedPayload
impl Sync for CheckpointOutcomeRecordedPayload
impl Unpin for CheckpointOutcomeRecordedPayload
impl UnsafeUnpin for CheckpointOutcomeRecordedPayload
impl UnwindSafe for CheckpointOutcomeRecordedPayload
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