pub struct CompiledCountDistinct {
pub table_name: SmartString,
pub column_name: SmartString,
pub result_column_name: String,
pub cached_epoch: u64,
}Expand description
Pre-bound state for COUNT(DISTINCT column).
Fields§
§table_name: SmartString§column_name: SmartString§result_column_name: String§cached_epoch: u64Trait Implementations§
Source§impl Clone for CompiledCountDistinct
impl Clone for CompiledCountDistinct
Source§fn clone(&self) -> CompiledCountDistinct
fn clone(&self) -> CompiledCountDistinct
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 Freeze for CompiledCountDistinct
impl RefUnwindSafe for CompiledCountDistinct
impl Send for CompiledCountDistinct
impl Sync for CompiledCountDistinct
impl Unpin for CompiledCountDistinct
impl UnsafeUnpin for CompiledCountDistinct
impl UnwindSafe for CompiledCountDistinct
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