pub struct GetWebhooksParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetWebhooksParamsBuilder<S>
impl<S: State> GetWebhooksParamsBuilder<S>
Sourcepub fn build(self) -> GetWebhooksParamswhere
S: IsComplete,
pub fn build(self) -> GetWebhooksParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn order(self, value: String) -> GetWebhooksParamsBuilder<SetOrder<S>>where
S::Order: IsUnset,
pub fn order(self, value: String) -> GetWebhooksParamsBuilder<SetOrder<S>>where
S::Order: IsUnset,
Sourcepub fn maybe_order(
self,
value: Option<String>,
) -> GetWebhooksParamsBuilder<SetOrder<S>>where
S::Order: IsUnset,
pub fn maybe_order(
self,
value: Option<String>,
) -> GetWebhooksParamsBuilder<SetOrder<S>>where
S::Order: IsUnset,
Sourcepub fn page_cursor(
self,
value: String,
) -> GetWebhooksParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
pub fn page_cursor(
self,
value: String,
) -> GetWebhooksParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
Sourcepub fn maybe_page_cursor(
self,
value: Option<String>,
) -> GetWebhooksParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
pub fn maybe_page_cursor(
self,
value: Option<String>,
) -> GetWebhooksParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
Sourcepub fn page_size(self, value: f64) -> GetWebhooksParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
pub fn page_size(self, value: f64) -> GetWebhooksParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
Sourcepub fn maybe_page_size(
self,
value: Option<f64>,
) -> GetWebhooksParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
pub fn maybe_page_size(
self,
value: Option<f64>,
) -> GetWebhooksParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for GetWebhooksParamsBuilder<S>
impl<S> RefUnwindSafe for GetWebhooksParamsBuilder<S>
impl<S> Send for GetWebhooksParamsBuilder<S>
impl<S> Sync for GetWebhooksParamsBuilder<S>
impl<S> Unpin for GetWebhooksParamsBuilder<S>
impl<S> UnwindSafe for GetWebhooksParamsBuilder<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