pub enum Query {
GroupBy(GroupBy),
Scan(Scan),
Search(Search),
SegmentMetadata(SegmentMetadata),
TimeBoundary(TimeBoundary),
Timeseries(Timeseries),
TopN(TopN),
}
Variants§
GroupBy(GroupBy)
Scan(Scan)
Search(Search)
SegmentMetadata(SegmentMetadata)
TimeBoundary(TimeBoundary)
Timeseries(Timeseries)
TopN(TopN)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Query
impl<'de> Deserialize<'de> for Query
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<SegmentMetadata> for Query
impl From<SegmentMetadata> for Query
Source§fn from(query: SegmentMetadata) -> Self
fn from(query: SegmentMetadata) -> Self
Converts to this type from the input type.
Source§impl From<TimeBoundary> for Query
impl From<TimeBoundary> for Query
Source§fn from(query: TimeBoundary) -> Self
fn from(query: TimeBoundary) -> Self
Converts to this type from the input type.
Source§impl From<Timeseries> for Query
impl From<Timeseries> for Query
Source§fn from(query: Timeseries) -> Self
fn from(query: Timeseries) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Query
impl RefUnwindSafe for Query
impl Send for Query
impl Sync for Query
impl Unpin for Query
impl UnwindSafe for Query
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