pub struct GetNotificationAttemptsParamsBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> GetNotificationAttemptsParamsBuilder<S>
impl<S: State> GetNotificationAttemptsParamsBuilder<S>
Sourcepub fn build(self) -> GetNotificationAttemptsParamswhere
S: IsComplete,
pub fn build(self) -> GetNotificationAttemptsParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn webhook_id(
self,
value: String,
) -> GetNotificationAttemptsParamsBuilder<SetWebhookId<S>>where
S::WebhookId: IsUnset,
pub fn webhook_id(
self,
value: String,
) -> GetNotificationAttemptsParamsBuilder<SetWebhookId<S>>where
S::WebhookId: IsUnset,
Required.
The ID of the webhook to fetch
Sourcepub fn notification_id(
self,
value: String,
) -> GetNotificationAttemptsParamsBuilder<SetNotificationId<S>>where
S::NotificationId: IsUnset,
pub fn notification_id(
self,
value: String,
) -> GetNotificationAttemptsParamsBuilder<SetNotificationId<S>>where
S::NotificationId: IsUnset,
Required.
The ID of the notification to fetch
Sourcepub fn page_cursor(
self,
value: String,
) -> GetNotificationAttemptsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
pub fn page_cursor(
self,
value: String,
) -> GetNotificationAttemptsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
Sourcepub fn maybe_page_cursor(
self,
value: Option<String>,
) -> GetNotificationAttemptsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
pub fn maybe_page_cursor(
self,
value: Option<String>,
) -> GetNotificationAttemptsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
Sourcepub fn page_size(
self,
value: f64,
) -> GetNotificationAttemptsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
pub fn page_size(
self,
value: f64,
) -> GetNotificationAttemptsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
Sourcepub fn maybe_page_size(
self,
value: Option<f64>,
) -> GetNotificationAttemptsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
pub fn maybe_page_size(
self,
value: Option<f64>,
) -> GetNotificationAttemptsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for GetNotificationAttemptsParamsBuilder<S>
impl<S> RefUnwindSafe for GetNotificationAttemptsParamsBuilder<S>
impl<S> Send for GetNotificationAttemptsParamsBuilder<S>
impl<S> Sync for GetNotificationAttemptsParamsBuilder<S>
impl<S> Unpin for GetNotificationAttemptsParamsBuilder<S>
impl<S> UnwindSafe for GetNotificationAttemptsParamsBuilder<S>
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