pub struct BodyResResultRows {
pub metadata: RowsMetadata,
pub rows_count: CInt,
pub rows_content: Vec<Vec<CBytes>>,
}Expand description
Structure that represents result of type rows.
Fields§
§metadata: RowsMetadataRows metadata
rows_count: CIntNumber of rows.
rows_content: Vec<Vec<CBytes>>From spec: it is composed of rows_count of rows.
Trait Implementations§
Source§impl Debug for BodyResResultRows
impl Debug for BodyResResultRows
Source§impl FromCursor for BodyResResultRows
impl FromCursor for BodyResResultRows
Source§fn from_cursor(cursor: &mut Cursor<&[u8]>) -> Result<BodyResResultRows>
fn from_cursor(cursor: &mut Cursor<&[u8]>) -> Result<BodyResResultRows>
It should return an implementor from an
io::Cursor over an array of bytes.Auto Trait Implementations§
impl Freeze for BodyResResultRows
impl RefUnwindSafe for BodyResResultRows
impl Send for BodyResResultRows
impl Sync for BodyResResultRows
impl Unpin for BodyResResultRows
impl UnwindSafe for BodyResResultRows
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