#[non_exhaustive]pub struct UpdateWebhookOutputBuilder { /* private fields */ }
Expand description
A builder for UpdateWebhookOutput
.
Implementations§
source§impl UpdateWebhookOutputBuilder
impl UpdateWebhookOutputBuilder
sourcepub fn webhook(self, input: Webhook) -> Self
pub fn webhook(self, input: Webhook) -> Self
Information about a repository's webhook that is associated with a project in CodeBuild.
sourcepub fn set_webhook(self, input: Option<Webhook>) -> Self
pub fn set_webhook(self, input: Option<Webhook>) -> Self
Information about a repository's webhook that is associated with a project in CodeBuild.
sourcepub fn get_webhook(&self) -> &Option<Webhook>
pub fn get_webhook(&self) -> &Option<Webhook>
Information about a repository's webhook that is associated with a project in CodeBuild.
sourcepub fn build(self) -> UpdateWebhookOutput
pub fn build(self) -> UpdateWebhookOutput
Consumes the builder and constructs a UpdateWebhookOutput
.
Trait Implementations§
source§impl Clone for UpdateWebhookOutputBuilder
impl Clone for UpdateWebhookOutputBuilder
source§fn clone(&self) -> UpdateWebhookOutputBuilder
fn clone(&self) -> UpdateWebhookOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UpdateWebhookOutputBuilder
impl Debug for UpdateWebhookOutputBuilder
source§impl Default for UpdateWebhookOutputBuilder
impl Default for UpdateWebhookOutputBuilder
source§fn default() -> UpdateWebhookOutputBuilder
fn default() -> UpdateWebhookOutputBuilder
Returns the “default value” for a type. Read more
impl StructuralPartialEq for UpdateWebhookOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdateWebhookOutputBuilder
impl RefUnwindSafe for UpdateWebhookOutputBuilder
impl Send for UpdateWebhookOutputBuilder
impl Sync for UpdateWebhookOutputBuilder
impl Unpin for UpdateWebhookOutputBuilder
impl UnwindSafe for UpdateWebhookOutputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.