pub struct GetWebhookBuilder<'a, S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<'a, S: State> GetWebhookBuilder<'a, S>
impl<'a, S: State> GetWebhookBuilder<'a, S>
Sourcepub fn build(self) -> GetWebhook<'a>where
S: IsComplete,
pub fn build(self) -> GetWebhook<'a>where
S: IsComplete,
Finish building and return the requested object
Sourcepub fn id(self, value: impl Into<CowStr<'a>>) -> GetWebhookBuilder<'a, SetId<S>>where
S::Id: IsUnset,
pub fn id(self, value: impl Into<CowStr<'a>>) -> GetWebhookBuilder<'a, SetId<S>>where
S::Id: IsUnset,
Required.
Auto Trait Implementations§
impl<'a, S> Freeze for GetWebhookBuilder<'a, S>
impl<'a, S> RefUnwindSafe for GetWebhookBuilder<'a, S>
impl<'a, S> Send for GetWebhookBuilder<'a, S>
impl<'a, S> Sync for GetWebhookBuilder<'a, S>
impl<'a, S> Unpin for GetWebhookBuilder<'a, S>
impl<'a, S> UnwindSafe for GetWebhookBuilder<'a, 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