pub struct ListSubscriptionEventsParameters {
pub cursor: Option<String>,
pub limit: Option<i32>,
}
Expand description
This is a model struct for ListSubscriptionEventsParameters (query parameters)
Fields§
§cursor: Option<String>
When the total number of resulting subscription events 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 subscription events to return in a paged response.
Implementations§
Source§impl ListSubscriptionEventsParameters
impl ListSubscriptionEventsParameters
pub fn to_query_string(&self) -> String
Trait Implementations§
Source§impl Clone for ListSubscriptionEventsParameters
impl Clone for ListSubscriptionEventsParameters
Source§fn clone(&self) -> ListSubscriptionEventsParameters
fn clone(&self) -> ListSubscriptionEventsParameters
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 Default for ListSubscriptionEventsParameters
impl Default for ListSubscriptionEventsParameters
Source§fn default() -> ListSubscriptionEventsParameters
fn default() -> ListSubscriptionEventsParameters
Returns the “default value” for a type. Read more
Source§impl From<ListSubscriptionEventsParameters> for String
impl From<ListSubscriptionEventsParameters> for String
Source§fn from(
list_subscription_events_parameters: ListSubscriptionEventsParameters,
) -> Self
fn from( list_subscription_events_parameters: ListSubscriptionEventsParameters, ) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ListSubscriptionEventsParameters
impl RefUnwindSafe for ListSubscriptionEventsParameters
impl Send for ListSubscriptionEventsParameters
impl Sync for ListSubscriptionEventsParameters
impl Unpin for ListSubscriptionEventsParameters
impl UnwindSafe for ListSubscriptionEventsParameters
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