#[non_exhaustive]pub struct DeleteBuildBatchOutput { /* private fields */ }
Implementations§
source§impl DeleteBuildBatchOutput
impl DeleteBuildBatchOutput
sourcepub fn status_code(&self) -> Option<&str>
pub fn status_code(&self) -> Option<&str>
The status code.
sourcepub fn builds_deleted(&self) -> Option<&[String]>
pub fn builds_deleted(&self) -> Option<&[String]>
An array of strings that contain the identifiers of the builds that were deleted.
sourcepub fn builds_not_deleted(&self) -> Option<&[BuildNotDeleted]>
pub fn builds_not_deleted(&self) -> Option<&[BuildNotDeleted]>
An array of BuildNotDeleted
objects that specify the builds that could not be deleted.
source§impl DeleteBuildBatchOutput
impl DeleteBuildBatchOutput
sourcepub fn builder() -> DeleteBuildBatchOutputBuilder
pub fn builder() -> DeleteBuildBatchOutputBuilder
Creates a new builder-style object to manufacture DeleteBuildBatchOutput
.
Trait Implementations§
source§impl Clone for DeleteBuildBatchOutput
impl Clone for DeleteBuildBatchOutput
source§fn clone(&self) -> DeleteBuildBatchOutput
fn clone(&self) -> DeleteBuildBatchOutput
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 DeleteBuildBatchOutput
impl Debug for DeleteBuildBatchOutput
source§impl PartialEq<DeleteBuildBatchOutput> for DeleteBuildBatchOutput
impl PartialEq<DeleteBuildBatchOutput> for DeleteBuildBatchOutput
source§fn eq(&self, other: &DeleteBuildBatchOutput) -> bool
fn eq(&self, other: &DeleteBuildBatchOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DeleteBuildBatchOutput
impl RequestId for DeleteBuildBatchOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DeleteBuildBatchOutput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteBuildBatchOutput
impl Send for DeleteBuildBatchOutput
impl Sync for DeleteBuildBatchOutput
impl Unpin for DeleteBuildBatchOutput
impl UnwindSafe for DeleteBuildBatchOutput
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