pub struct GetResendJobStatusParamsBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> GetResendJobStatusParamsBuilder<S>
impl<S: State> GetResendJobStatusParamsBuilder<S>
Sourcepub fn build(self) -> GetResendJobStatusParamswhere
S: IsComplete,
pub fn build(self) -> GetResendJobStatusParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn webhook_id(
self,
value: String,
) -> GetResendJobStatusParamsBuilder<SetWebhookId<S>>where
S::WebhookId: IsUnset,
pub fn webhook_id(
self,
value: String,
) -> GetResendJobStatusParamsBuilder<SetWebhookId<S>>where
S::WebhookId: IsUnset,
Required.
The ID of the webhook
Sourcepub fn job_id(
self,
value: String,
) -> GetResendJobStatusParamsBuilder<SetJobId<S>>where
S::JobId: IsUnset,
pub fn job_id(
self,
value: String,
) -> GetResendJobStatusParamsBuilder<SetJobId<S>>where
S::JobId: IsUnset,
Required.
The ID of the resend job
Auto Trait Implementations§
impl<S> Freeze for GetResendJobStatusParamsBuilder<S>
impl<S> RefUnwindSafe for GetResendJobStatusParamsBuilder<S>
impl<S> Send for GetResendJobStatusParamsBuilder<S>
impl<S> Sync for GetResendJobStatusParamsBuilder<S>
impl<S> Unpin for GetResendJobStatusParamsBuilder<S>
impl<S> UnwindSafe for GetResendJobStatusParamsBuilder<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