pub struct CodeBuildClient { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Clone for CodeBuildClient
impl Clone for CodeBuildClient
Source§fn clone(&self) -> CodeBuildClient
fn clone(&self) -> CodeBuildClient
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl CodeBuildApi for CodeBuildClient
impl CodeBuildApi for CodeBuildClient
fn create_project<'life0, 'async_trait>(
&'life0 self,
request: CreateProjectRequest,
) -> Pin<Box<dyn Future<Output = Result<CreateProjectResponse>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn delete_project<'life0, 'async_trait>(
&'life0 self,
request: DeleteProjectRequest,
) -> Pin<Box<dyn Future<Output = Result<DeleteProjectResponse>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn update_project<'life0, 'async_trait>(
&'life0 self,
request: UpdateProjectRequest,
) -> Pin<Box<dyn Future<Output = Result<UpdateProjectResponse>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn batch_get_projects<'life0, 'async_trait>(
&'life0 self,
request: BatchGetProjectsRequest,
) -> Pin<Box<dyn Future<Output = Result<BatchGetProjectsResponse>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn start_build<'life0, 'async_trait>(
&'life0 self,
request: StartBuildRequest,
) -> Pin<Box<dyn Future<Output = Result<StartBuildResponse>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn stop_build<'life0, 'async_trait>(
&'life0 self,
request: StopBuildRequest,
) -> Pin<Box<dyn Future<Output = Result<StopBuildResponse>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn batch_get_builds<'life0, 'async_trait>(
&'life0 self,
request: BatchGetBuildsRequest,
) -> Pin<Box<dyn Future<Output = Result<BatchGetBuildsResponse>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn batch_delete_builds<'life0, 'async_trait>(
&'life0 self,
request: BatchDeleteBuildsRequest,
) -> Pin<Box<dyn Future<Output = Result<BatchDeleteBuildsResponse>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn retry_build<'life0, 'async_trait>(
&'life0 self,
request: RetryBuildRequest,
) -> Pin<Box<dyn Future<Output = Result<RetryBuildResponse>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl !RefUnwindSafe for CodeBuildClient
impl !UnwindSafe for CodeBuildClient
impl Freeze for CodeBuildClient
impl Send for CodeBuildClient
impl Sync for CodeBuildClient
impl Unpin for CodeBuildClient
impl UnsafeUnpin for CodeBuildClient
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.