pub struct PoolChunkStats {
pub chunk_size: Option<i32>,
pub free_bytes: Option<i32>,
pub usage: Option<i32>,
}Fields§
§chunk_size: Option<i32>§free_bytes: Option<i32>§usage: Option<i32>Implementations§
Source§impl PoolChunkStats
impl PoolChunkStats
pub fn new() -> PoolChunkStats
Trait Implementations§
Source§impl Clone for PoolChunkStats
impl Clone for PoolChunkStats
Source§fn clone(&self) -> PoolChunkStats
fn clone(&self) -> PoolChunkStats
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 PoolChunkStats
impl Debug for PoolChunkStats
Source§impl Default for PoolChunkStats
impl Default for PoolChunkStats
Source§fn default() -> PoolChunkStats
fn default() -> PoolChunkStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PoolChunkStats
impl<'de> Deserialize<'de> for PoolChunkStats
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 PoolChunkStats
impl PartialEq for PoolChunkStats
Source§impl Serialize for PoolChunkStats
impl Serialize for PoolChunkStats
impl StructuralPartialEq for PoolChunkStats
Auto Trait Implementations§
impl Freeze for PoolChunkStats
impl RefUnwindSafe for PoolChunkStats
impl Send for PoolChunkStats
impl Sync for PoolChunkStats
impl Unpin for PoolChunkStats
impl UnwindSafe for PoolChunkStats
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