pub struct RequestListResult {
pub data: Vec<RequestSummary>,
pub total_count: i64,
}Expand description
Result of a paginated request list query.
Fields§
§data: Vec<RequestSummary>§total_count: i64Best-effort total row count for the full query result.
Returns an exact count when the count query completes within a short internal timeout; otherwise falls back to a query-planner row estimate. Planner estimates are typically within a few percent when table statistics are current, but may diverge more if stats are stale.
Trait Implementations§
Source§impl Clone for RequestListResult
impl Clone for RequestListResult
Source§fn clone(&self) -> RequestListResult
fn clone(&self) -> RequestListResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RequestListResult
impl Debug for RequestListResult
Source§impl<'de> Deserialize<'de> for RequestListResult
impl<'de> Deserialize<'de> for RequestListResult
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 RequestListResult
impl RefUnwindSafe for RequestListResult
impl Send for RequestListResult
impl Sync for RequestListResult
impl Unpin for RequestListResult
impl UnsafeUnpin for RequestListResult
impl UnwindSafe for RequestListResult
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