pub enum ClickHouseEvent {
Progress(Progress),
Profile(Vec<ProfileEvent>),
}Expand description
Profile and progress events from clickhouse
Variants§
Progress(Progress)
Profile(Vec<ProfileEvent>)
Trait Implementations§
Source§impl AsRef<str> for ClickHouseEvent
impl AsRef<str> for ClickHouseEvent
Source§impl Clone for ClickHouseEvent
impl Clone for ClickHouseEvent
Source§fn clone(&self) -> ClickHouseEvent
fn clone(&self) -> ClickHouseEvent
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§
impl Freeze for ClickHouseEvent
impl RefUnwindSafe for ClickHouseEvent
impl Send for ClickHouseEvent
impl Sync for ClickHouseEvent
impl Unpin for ClickHouseEvent
impl UnwindSafe for ClickHouseEvent
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