pub struct SearchFilteredChannelsRequest { /* private fields */ }
Implementations§
Source§impl SearchFilteredChannelsRequest
impl SearchFilteredChannelsRequest
Sourcepub fn substrings(&self) -> Option<&BTreeSet<String>>
pub fn substrings(&self) -> Option<&BTreeSet<String>>
All of the strings in the set must appear exactly as substrings within the channel name.
Sourcepub fn subsequences(&self) -> Option<&BTreeSet<String>>
pub fn subsequences(&self) -> Option<&BTreeSet<String>>
All of the characters in the string will appear in the same order (not necessarily adjacently) within the channel name. Only supports one subsequence to match at this time.
pub fn data_sources(&self) -> &BTreeSet<DataSourceRid>
Sourcepub fn result_size(&self) -> Option<i32>
pub fn result_size(&self) -> Option<i32>
Defaults to 200. Will throw if larger than 200.
For each data source specified as a key, search will only return channels containing a superset of the tags specified for that given datasource. If a data source is present in the dataSources field but not in this map, or if a data source points to an empty map of tags, it will be searched without tag filters.
Sourcepub fn min_data_updated_time(&self) -> Option<&UtcTimestamp>
pub fn min_data_updated_time(&self) -> Option<&UtcTimestamp>
If specified, search will only return channels that have had new data after the specified time.
Sourcepub fn max_data_start_time(&self) -> Option<&UtcTimestamp>
pub fn max_data_start_time(&self) -> Option<&UtcTimestamp>
If specified, search will only return channels that have data before the specified time.
pub fn previously_selected_channels( &self, ) -> Option<&BTreeMap<DataSourceRid, BTreeSet<Channel>>>
pub fn fuzzy_search_text(&self) -> Option<&str>
Sourcepub fn exact_match(&self) -> Option<&BTreeSet<String>>
👎Deprecated: Try substring search instead.
pub fn exact_match(&self) -> Option<&BTreeSet<String>>
Will return only channels that contain all strings specified as exact matches (case insensitive).
Trait Implementations§
Source§impl Clone for SearchFilteredChannelsRequest
impl Clone for SearchFilteredChannelsRequest
Source§fn clone(&self) -> SearchFilteredChannelsRequest
fn clone(&self) -> SearchFilteredChannelsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<'de> Deserialize<'de> for SearchFilteredChannelsRequest
impl<'de> Deserialize<'de> for SearchFilteredChannelsRequest
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>,
Source§impl From<SearchFilteredChannelsRequest> for Builder<Complete>
impl From<SearchFilteredChannelsRequest> for Builder<Complete>
Source§fn from(v: SearchFilteredChannelsRequest) -> Self
fn from(v: SearchFilteredChannelsRequest) -> Self
Source§impl Hash for SearchFilteredChannelsRequest
impl Hash for SearchFilteredChannelsRequest
Source§impl Ord for SearchFilteredChannelsRequest
impl Ord for SearchFilteredChannelsRequest
Source§fn cmp(&self, other: &SearchFilteredChannelsRequest) -> Ordering
fn cmp(&self, other: &SearchFilteredChannelsRequest) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for SearchFilteredChannelsRequest
impl PartialEq for SearchFilteredChannelsRequest
Source§fn eq(&self, other: &SearchFilteredChannelsRequest) -> bool
fn eq(&self, other: &SearchFilteredChannelsRequest) -> bool
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for SearchFilteredChannelsRequest
impl PartialOrd for SearchFilteredChannelsRequest
impl Eq for SearchFilteredChannelsRequest
impl StructuralPartialEq for SearchFilteredChannelsRequest
Auto Trait Implementations§
impl Freeze for SearchFilteredChannelsRequest
impl RefUnwindSafe for SearchFilteredChannelsRequest
impl Send for SearchFilteredChannelsRequest
impl Sync for SearchFilteredChannelsRequest
impl Unpin for SearchFilteredChannelsRequest
impl UnwindSafe for SearchFilteredChannelsRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request