pub struct SearchSubscriptionsRequest {
pub cursor: Option<String>,
pub limit: Option<i32>,
pub query: Option<SearchSubscriptionsQuery>,
pub include: Option<Vec<String>>,
}
Expand description
This is a model struct for SearchSubscriptionsRequest type.
Fields
cursor: Option<String>
When the total number of resulting subscriptions exceeds the limit of a paged response, specify the cursor returned from a preceding response here to fetch the next set of results. If the cursor is unset, the response contains the last page of the results.
For more information, see Pagination.
limit: Option<i32>
The upper limit on the number of subscriptions to return in a paged response.
Min: 1
query: Option<SearchSubscriptionsQuery>
A subscription query consisting of specified filtering conditions.
If this query field is unspecified, the SearchSubscriptions
call will return all
subscriptions.
include: Option<Vec<String>>
An option to include related information in the response.
The supported values are:
actions
: to include scheduled actions on the targeted subscriptions.
Trait Implementations
sourceimpl Clone for SearchSubscriptionsRequest
impl Clone for SearchSubscriptionsRequest
sourcefn clone(&self) -> SearchSubscriptionsRequest
fn clone(&self) -> SearchSubscriptionsRequest
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 SearchSubscriptionsRequest
impl Debug for SearchSubscriptionsRequest
sourceimpl Default for SearchSubscriptionsRequest
impl Default for SearchSubscriptionsRequest
sourcefn default() -> SearchSubscriptionsRequest
fn default() -> SearchSubscriptionsRequest
Returns the “default value” for a type. Read more
sourceimpl PartialEq<SearchSubscriptionsRequest> for SearchSubscriptionsRequest
impl PartialEq<SearchSubscriptionsRequest> for SearchSubscriptionsRequest
sourcefn eq(&self, other: &SearchSubscriptionsRequest) -> bool
fn eq(&self, other: &SearchSubscriptionsRequest) -> bool
impl Eq for SearchSubscriptionsRequest
impl StructuralEq for SearchSubscriptionsRequest
impl StructuralPartialEq for SearchSubscriptionsRequest
Auto Trait Implementations
impl RefUnwindSafe for SearchSubscriptionsRequest
impl Send for SearchSubscriptionsRequest
impl Sync for SearchSubscriptionsRequest
impl Unpin for SearchSubscriptionsRequest
impl UnwindSafe for SearchSubscriptionsRequest
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.