pub struct ListUsageTriggerRequest<'a> {
pub account_sid: String,
pub page: Option<i64>,
pub page_size: Option<i64>,
pub page_token: Option<String>,
pub recurring: Option<String>,
pub trigger_by: Option<String>,
pub usage_category: Option<String>,
/* private fields */
}
Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§account_sid: String
§page: Option<i64>
§page_size: Option<i64>
§page_token: Option<String>
§recurring: Option<String>
§trigger_by: Option<String>
§usage_category: Option<String>
Implementations§
Source§impl<'a> ListUsageTriggerRequest<'a>
impl<'a> ListUsageTriggerRequest<'a>
pub async fn send(self) -> InMemoryResult<Value>
pub fn page(self, page: i64) -> Self
pub fn page_size(self, page_size: i64) -> Self
pub fn page_token(self, page_token: &str) -> Self
pub fn recurring(self, recurring: &str) -> Self
pub fn trigger_by(self, trigger_by: &str) -> Self
pub fn usage_category(self, usage_category: &str) -> Self
Trait Implementations§
Source§impl<'a> Clone for ListUsageTriggerRequest<'a>
impl<'a> Clone for ListUsageTriggerRequest<'a>
Source§fn clone(&self) -> ListUsageTriggerRequest<'a>
fn clone(&self) -> ListUsageTriggerRequest<'a>
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<'a> IntoFuture for ListUsageTriggerRequest<'a>
impl<'a> IntoFuture for ListUsageTriggerRequest<'a>
Source§type Output = Result<Value, Error<InMemoryBody>>
type Output = Result<Value, Error<InMemoryBody>>
The output that the future will produce on completion.
Source§type IntoFuture = Pin<Box<dyn Future<Output = <ListUsageTriggerRequest<'a> as IntoFuture>::Output> + Send + 'a>>
type IntoFuture = Pin<Box<dyn Future<Output = <ListUsageTriggerRequest<'a> as IntoFuture>::Output> + Send + 'a>>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl<'a> Freeze for ListUsageTriggerRequest<'a>
impl<'a> !RefUnwindSafe for ListUsageTriggerRequest<'a>
impl<'a> Send for ListUsageTriggerRequest<'a>
impl<'a> Sync for ListUsageTriggerRequest<'a>
impl<'a> Unpin for ListUsageTriggerRequest<'a>
impl<'a> !UnwindSafe for ListUsageTriggerRequest<'a>
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