pub struct SearchFilteredChannelsRequest { /* private fields */ }Implementations§
Source§impl SearchFilteredChannelsRequest
 
impl SearchFilteredChannelsRequest
Sourcepub fn builder() -> Builder<FuzzySearchTextStage>
 
pub fn builder() -> Builder<FuzzySearchTextStage>
Returns a new builder.
Source§impl SearchFilteredChannelsRequest
 
impl SearchFilteredChannelsRequest
Sourcepub fn new(fuzzy_search_text: impl Into<String>) -> Self
 
pub fn new(fuzzy_search_text: impl Into<String>) -> Self
Constructs a new instance of the type.
pub fn fuzzy_search_text(&self) -> &str
Sourcepub fn exact_match(&self) -> &BTreeSet<String>
 
pub fn exact_match(&self) -> &BTreeSet<String>
Will return only channels that contain all strings specified as exact matches (case insensitive).
pub fn data_sources(&self) -> &BTreeSet<DataSourceRid>
pub fn previously_selected_channels( &self, ) -> Option<&BTreeMap<DataSourceRid, BTreeSet<Channel>>>
👎Deprecated: Will be ignored.
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.
Trait Implementations§
Source§impl Clone for SearchFilteredChannelsRequest
 
impl Clone for SearchFilteredChannelsRequest
Source§fn clone(&self) -> SearchFilteredChannelsRequest
 
fn clone(&self) -> SearchFilteredChannelsRequest
Returns a copy 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<'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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<SearchFilteredChannelsRequest> for Builder<Complete>
 
impl From<SearchFilteredChannelsRequest> for Builder<Complete>
Source§fn from(v: SearchFilteredChannelsRequest) -> Self
 
fn from(v: SearchFilteredChannelsRequest) -> Self
Converts to this type from the input type.
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,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SearchFilteredChannelsRequest
 
impl PartialEq for SearchFilteredChannelsRequest
Source§fn eq(&self, other: &SearchFilteredChannelsRequest) -> bool
 
fn eq(&self, other: &SearchFilteredChannelsRequest) -> bool
Tests for 
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
Mutably borrows from an owned value. Read more
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
Compare self to 
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>
Wrap the input message 
T in a tonic::Request