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