pub enum SessionSearchGranularity {
Session,
Run,
Occurrence,
}Expand description
Result grouping level.
Variants§
Session
Return one best hit per session.
Run
Return one best hit per session/run pair.
Occurrence
Return every stable projected occurrence.
Trait Implementations§
Source§impl Clone for SessionSearchGranularity
impl Clone for SessionSearchGranularity
Source§fn clone(&self) -> SessionSearchGranularity
fn clone(&self) -> SessionSearchGranularity
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 moreimpl Copy for SessionSearchGranularity
Source§impl Debug for SessionSearchGranularity
impl Debug for SessionSearchGranularity
Source§impl Default for SessionSearchGranularity
impl Default for SessionSearchGranularity
Source§fn default() -> SessionSearchGranularity
fn default() -> SessionSearchGranularity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionSearchGranularity
impl<'de> Deserialize<'de> for SessionSearchGranularity
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
impl Eq for SessionSearchGranularity
Source§impl Ord for SessionSearchGranularity
impl Ord for SessionSearchGranularity
Source§fn cmp(&self, other: &SessionSearchGranularity) -> Ordering
fn cmp(&self, other: &SessionSearchGranularity) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SessionSearchGranularity
impl PartialEq for SessionSearchGranularity
Source§impl PartialOrd for SessionSearchGranularity
impl PartialOrd for SessionSearchGranularity
Source§impl Serialize for SessionSearchGranularity
impl Serialize for SessionSearchGranularity
impl StructuralPartialEq for SessionSearchGranularity
Auto Trait Implementations§
impl Freeze for SessionSearchGranularity
impl RefUnwindSafe for SessionSearchGranularity
impl Send for SessionSearchGranularity
impl Sync for SessionSearchGranularity
impl Unpin for SessionSearchGranularity
impl UnsafeUnpin for SessionSearchGranularity
impl UnwindSafe for SessionSearchGranularity
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