pub struct ExplorerResult {
pub rows: Vec<ExplorerRow>,
pub facets: HashMap<Vec<u8>, HashMap<Vec<u8>, u64>>,
pub histogram: Option<ExplorerHistogram>,
pub column_fields: HashSet<Vec<u8>>,
pub stats: ExplorerStats,
pub comparison: Option<ExplorerComparison>,
}Fields§
§rows: Vec<ExplorerRow>§facets: HashMap<Vec<u8>, HashMap<Vec<u8>, u64>>§histogram: Option<ExplorerHistogram>§column_fields: HashSet<Vec<u8>>§stats: ExplorerStats§comparison: Option<ExplorerComparison>Trait Implementations§
Source§impl Clone for ExplorerResult
impl Clone for ExplorerResult
Source§fn clone(&self) -> ExplorerResult
fn clone(&self) -> ExplorerResult
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 ExplorerResult
impl Debug for ExplorerResult
Source§impl Default for ExplorerResult
impl Default for ExplorerResult
Source§fn default() -> ExplorerResult
fn default() -> ExplorerResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExplorerResult
impl RefUnwindSafe for ExplorerResult
impl Send for ExplorerResult
impl Sync for ExplorerResult
impl Unpin for ExplorerResult
impl UnsafeUnpin for ExplorerResult
impl UnwindSafe for ExplorerResult
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