pub struct StatsTableResponse {
pub code: i32,
pub msg: String,
pub row_count: u64,
pub memory_size_in_byte: u64,
pub disk_size_in_byte: u64,
}Fields§
§code: i32§msg: String§row_count: u64§memory_size_in_byte: u64§disk_size_in_byte: u64Trait Implementations§
Source§impl Clone for StatsTableResponse
impl Clone for StatsTableResponse
Source§fn clone(&self) -> StatsTableResponse
fn clone(&self) -> StatsTableResponse
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 StatsTableResponse
impl Debug for StatsTableResponse
Source§impl<'de> Deserialize<'de> for StatsTableResponse
impl<'de> Deserialize<'de> for StatsTableResponse
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
Auto Trait Implementations§
impl Freeze for StatsTableResponse
impl RefUnwindSafe for StatsTableResponse
impl Send for StatsTableResponse
impl Sync for StatsTableResponse
impl Unpin for StatsTableResponse
impl UnwindSafe for StatsTableResponse
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