pub struct RowsResponse {
pub count: i32,
pub next: Option<String>,
pub previous: Option<String>,
pub results: Vec<HashMap<String, Value>>,
}
Expand description
Response structure for table row queries
Contains the query results along with pagination information.
Fields§
§count: i32
Total count of records that match the query criteria, not just the current page
next: Option<String>
URL for the next page of results, if available
previous: Option<String>
URL for the previous page of results, if available
results: Vec<HashMap<String, Value>>
The actual rows returned by the query
Trait Implementations§
Source§impl Debug for RowsResponse
impl Debug for RowsResponse
Source§impl<'de> Deserialize<'de> for RowsResponse
impl<'de> Deserialize<'de> for RowsResponse
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 RowsResponse
impl RefUnwindSafe for RowsResponse
impl Send for RowsResponse
impl Sync for RowsResponse
impl Unpin for RowsResponse
impl UnwindSafe for RowsResponse
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