pub struct RemoteQueryResult<Row> {
pub rows: Vec<Row>,
pub max_commit_seq: i64,
}Fields§
§rows: Vec<Row>§max_commit_seq: i64Trait Implementations§
Source§impl<Row: Clone> Clone for RemoteQueryResult<Row>
impl<Row: Clone> Clone for RemoteQueryResult<Row>
Source§fn clone(&self) -> RemoteQueryResult<Row>
fn clone(&self) -> RemoteQueryResult<Row>
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<Row: Debug> Debug for RemoteQueryResult<Row>
impl<Row: Debug> Debug for RemoteQueryResult<Row>
Source§impl<Row: PartialEq> PartialEq for RemoteQueryResult<Row>
impl<Row: PartialEq> PartialEq for RemoteQueryResult<Row>
impl<Row: PartialEq> StructuralPartialEq for RemoteQueryResult<Row>
Auto Trait Implementations§
impl<Row> Freeze for RemoteQueryResult<Row>
impl<Row> RefUnwindSafe for RemoteQueryResult<Row>where
Row: RefUnwindSafe,
impl<Row> Send for RemoteQueryResult<Row>where
Row: Send,
impl<Row> Sync for RemoteQueryResult<Row>where
Row: Sync,
impl<Row> Unpin for RemoteQueryResult<Row>where
Row: Unpin,
impl<Row> UnsafeUnpin for RemoteQueryResult<Row>
impl<Row> UnwindSafe for RemoteQueryResult<Row>where
Row: UnwindSafe,
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