pub struct ParsedQuery(/* private fields */);Trait Implementations§
Source§impl Clone for ParsedQuery
impl Clone for ParsedQuery
Source§fn clone(&self) -> ParsedQuery
fn clone(&self) -> ParsedQuery
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 moreSource§impl Debug for ParsedQuery
impl Debug for ParsedQuery
Source§impl Display for ParsedQuery
impl Display for ParsedQuery
Source§impl<'a> TryInto<ParsedQuery> for &'a String
impl<'a> TryInto<ParsedQuery> for &'a String
Source§type Error = KlickhouseError
type Error = KlickhouseError
The type returned in the event of a conversion error.
Source§fn try_into(self) -> Result<ParsedQuery>
fn try_into(self) -> Result<ParsedQuery>
Performs the conversion.
Source§impl<'a> TryInto<ParsedQuery> for &'a str
impl<'a> TryInto<ParsedQuery> for &'a str
Source§type Error = KlickhouseError
type Error = KlickhouseError
The type returned in the event of a conversion error.
Source§fn try_into(self) -> Result<ParsedQuery>
fn try_into(self) -> Result<ParsedQuery>
Performs the conversion.
Source§impl<'a> TryInto<ParsedQuery> for QueryBuilder<'a>
impl<'a> TryInto<ParsedQuery> for QueryBuilder<'a>
Source§type Error = KlickhouseError
type Error = KlickhouseError
The type returned in the event of a conversion error.
Source§fn try_into(self) -> Result<ParsedQuery>
fn try_into(self) -> Result<ParsedQuery>
Performs the conversion.
Source§impl TryInto<ParsedQuery> for SelectBuilder
impl TryInto<ParsedQuery> for SelectBuilder
Source§type Error = KlickhouseError
type Error = KlickhouseError
The type returned in the event of a conversion error.
Source§fn try_into(self) -> Result<ParsedQuery>
fn try_into(self) -> Result<ParsedQuery>
Performs the conversion.
Source§impl TryInto<ParsedQuery> for String
impl TryInto<ParsedQuery> for String
Source§type Error = KlickhouseError
type Error = KlickhouseError
The type returned in the event of a conversion error.
Source§fn try_into(self) -> Result<ParsedQuery>
fn try_into(self) -> Result<ParsedQuery>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ParsedQuery
impl RefUnwindSafe for ParsedQuery
impl Send for ParsedQuery
impl Sync for ParsedQuery
impl Unpin for ParsedQuery
impl UnwindSafe for ParsedQuery
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