pub struct Rows {
pub metadata: ResultMetadata,
pub rows_count: usize,
pub rows: Vec<Row>,
pub serialized_size: usize,
}
Fields§
§metadata: ResultMetadata
§rows_count: usize
§rows: Vec<Row>
§serialized_size: usize
Original size of the serialized rows.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Rows
impl RefUnwindSafe for Rows
impl Send for Rows
impl Sync for Rows
impl Unpin for Rows
impl UnwindSafe for Rows
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