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§
Source§impl Clone for SearchSubscriptionsRequest
impl Clone for SearchSubscriptionsRequest
Source§fn clone(&self) -> SearchSubscriptionsRequest
fn clone(&self) -> SearchSubscriptionsRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SearchSubscriptionsRequest
impl Debug for SearchSubscriptionsRequest
Source§impl Default for SearchSubscriptionsRequest
impl Default for SearchSubscriptionsRequest
Source§fn default() -> SearchSubscriptionsRequest
fn default() -> SearchSubscriptionsRequest
Returns the “default value” for a type. Read more
impl Eq for SearchSubscriptionsRequest
impl StructuralPartialEq for SearchSubscriptionsRequest
Auto Trait Implementations§
impl Freeze for SearchSubscriptionsRequest
impl RefUnwindSafe for SearchSubscriptionsRequest
impl Send for SearchSubscriptionsRequest
impl Sync for SearchSubscriptionsRequest
impl Unpin for SearchSubscriptionsRequest
impl UnwindSafe for SearchSubscriptionsRequest
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> 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.