pub struct SharedQueryInfo {
pub tables: Vec<TableWireSchema>,
pub normalized_fp: u64,
}Expand description
The query-wide pieces a server needs to frame each subscriber’s hello for a shared
query (see ClusterConsumer::register_shared_query): the deterministic table set and
its normalized_fp. The footprint fold itself lives on the drain thread.
Fields§
§tables: Vec<TableWireSchema>§normalized_fp: u64Trait Implementations§
Source§fn clone(&self) -> SharedQueryInfo
fn clone(&self) -> SharedQueryInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
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