pub struct PublicReadPage {
pub columns: Vec<String>,
pub rows: Vec<Row>,
pub next_cursor: Option<PublicReadCursor>,
pub fingerprint: String,
pub database_id: [u8; 16],
pub catalog_id: [u8; 16],
pub catalog_generation: u64,
}Fields§
§columns: Vec<String>§rows: Vec<Row>§next_cursor: Option<PublicReadCursor>§fingerprint: String§database_id: [u8; 16]§catalog_id: [u8; 16]§catalog_generation: u64Trait Implementations§
Source§impl Clone for PublicReadPage
impl Clone for PublicReadPage
Source§fn clone(&self) -> PublicReadPage
fn clone(&self) -> PublicReadPage
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 PublicReadPage
impl Debug for PublicReadPage
Source§impl PartialEq for PublicReadPage
impl PartialEq for PublicReadPage
impl StructuralPartialEq for PublicReadPage
Auto Trait Implementations§
impl Freeze for PublicReadPage
impl RefUnwindSafe for PublicReadPage
impl Send for PublicReadPage
impl Sync for PublicReadPage
impl Unpin for PublicReadPage
impl UnsafeUnpin for PublicReadPage
impl UnwindSafe for PublicReadPage
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