pub struct ViewResult {
pub total_rows: u64,
pub offset: u64,
pub rows: Vec<ViewRow>,
}Expand description
Result of querying a view.
Fields§
§total_rows: u64§offset: u64§rows: Vec<ViewRow>Trait Implementations§
Source§impl Clone for ViewResult
impl Clone for ViewResult
Source§fn clone(&self) -> ViewResult
fn clone(&self) -> ViewResult
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 moreAuto Trait Implementations§
impl Freeze for ViewResult
impl RefUnwindSafe for ViewResult
impl Send for ViewResult
impl Sync for ViewResult
impl Unpin for ViewResult
impl UnwindSafe for ViewResult
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