pub struct WalStatusResponse {
pub durable_lsn: u64,
pub next_lsn: u64,
pub active_segment_id: u64,
pub oldest_segment_id: u64,
pub bg_failure: Option<String>,
}Fields§
§durable_lsn: u64§next_lsn: u64§active_segment_id: u64§oldest_segment_id: u64§bg_failure: Option<String>Latched fsync error from the bg flusher (only populated under
SyncMode::Group). None when healthy.
Trait Implementations§
Source§impl Debug for WalStatusResponse
impl Debug for WalStatusResponse
Auto Trait Implementations§
impl Freeze for WalStatusResponse
impl RefUnwindSafe for WalStatusResponse
impl Send for WalStatusResponse
impl Sync for WalStatusResponse
impl Unpin for WalStatusResponse
impl UnsafeUnpin for WalStatusResponse
impl UnwindSafe for WalStatusResponse
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