pub struct DataInfo {
pub database: String,
pub layout: String,
pub table: String,
pub total_record_count: u64,
pub found_count: u64,
pub returned_count: u64,
}Expand description
Metadata about the data returned from a database query.
Fields§
§database: StringName of the database that was queried.
layout: StringName of the layout used for the query.
table: StringName of the table that was queried.
total_record_count: u64Total number of records in the table before applying any filters.
found_count: u64Number of records that matched the find criteria.
returned_count: u64Number of records actually returned in the response (maybe limited by pagination).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DataInfo
impl<'de> Deserialize<'de> for DataInfo
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 DataInfo
impl RefUnwindSafe for DataInfo
impl Send for DataInfo
impl Sync for DataInfo
impl Unpin for DataInfo
impl UnwindSafe for DataInfo
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