pub struct PgStatsDelta {
pub acting: Option<i32>,
pub log_size: i32,
pub ondisk_log_size: i32,
pub stat_sum: StatSum,
pub up: Option<i32>,
}Fields§
§acting: Option<i32>§log_size: i32§ondisk_log_size: i32§stat_sum: StatSum§up: Option<i32>Trait Implementations§
Source§impl Clone for PgStatsDelta
impl Clone for PgStatsDelta
Source§fn clone(&self) -> PgStatsDelta
fn clone(&self) -> PgStatsDelta
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 PgStatsDelta
impl Debug for PgStatsDelta
Source§impl<'de> Deserialize<'de> for PgStatsDelta
impl<'de> Deserialize<'de> for PgStatsDelta
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 PgStatsDelta
impl PartialEq for PgStatsDelta
impl StructuralPartialEq for PgStatsDelta
Auto Trait Implementations§
impl Freeze for PgStatsDelta
impl RefUnwindSafe for PgStatsDelta
impl Send for PgStatsDelta
impl Sync for PgStatsDelta
impl Unpin for PgStatsDelta
impl UnwindSafe for PgStatsDelta
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