pub struct PendingQueryResponse {
pub tx: Arc<str>,
pub sequence: u64,
pub upsert_items: Vec<Arc<dyn AnyItem>>,
pub deletes: Vec<Arc<str>>,
pub total_count: usize,
pub window: Option<QueryWindow>,
pub window_order_ids: Option<Vec<Arc<str>>>,
}Fields§
§tx: Arc<str>§sequence: u64§upsert_items: Vec<Arc<dyn AnyItem>>§deletes: Vec<Arc<str>>§total_count: usize§window: Option<QueryWindow>§window_order_ids: Option<Vec<Arc<str>>>Implementations§
Source§impl PendingQueryResponse
impl PendingQueryResponse
pub fn into_wire(self) -> QueryResponse
Trait Implementations§
Source§impl Clone for PendingQueryResponse
impl Clone for PendingQueryResponse
Source§fn clone(&self) -> PendingQueryResponse
fn clone(&self) -> PendingQueryResponse
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for PendingQueryResponse
impl !UnwindSafe for PendingQueryResponse
impl Freeze for PendingQueryResponse
impl Send for PendingQueryResponse
impl Sync for PendingQueryResponse
impl Unpin for PendingQueryResponse
impl UnsafeUnpin for PendingQueryResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more