pub struct SearchSubscriptionsQuery {
pub filter: Option<SearchSubscriptionsFilter>,
}
Expand description
Represents a query, consisting of specified query expressions, used to search for subscriptions.
Fields
filter: Option<SearchSubscriptionsFilter>
A list of query expressions.
Trait Implementations
sourceimpl Clone for SearchSubscriptionsQuery
impl Clone for SearchSubscriptionsQuery
sourcefn clone(&self) -> SearchSubscriptionsQuery
fn clone(&self) -> SearchSubscriptionsQuery
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for SearchSubscriptionsQuery
impl Debug for SearchSubscriptionsQuery
sourceimpl Default for SearchSubscriptionsQuery
impl Default for SearchSubscriptionsQuery
sourcefn default() -> SearchSubscriptionsQuery
fn default() -> SearchSubscriptionsQuery
Returns the “default value” for a type. Read more
sourceimpl PartialEq<SearchSubscriptionsQuery> for SearchSubscriptionsQuery
impl PartialEq<SearchSubscriptionsQuery> for SearchSubscriptionsQuery
sourcefn eq(&self, other: &SearchSubscriptionsQuery) -> bool
fn eq(&self, other: &SearchSubscriptionsQuery) -> bool
sourceimpl Serialize for SearchSubscriptionsQuery
impl Serialize for SearchSubscriptionsQuery
impl Eq for SearchSubscriptionsQuery
impl StructuralEq for SearchSubscriptionsQuery
impl StructuralPartialEq for SearchSubscriptionsQuery
Auto Trait Implementations
impl RefUnwindSafe for SearchSubscriptionsQuery
impl Send for SearchSubscriptionsQuery
impl Sync for SearchSubscriptionsQuery
impl Unpin for SearchSubscriptionsQuery
impl UnwindSafe for SearchSubscriptionsQuery
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.