Struct aws_sdk_codestar::types::CodeCommitCodeDestination
source · #[non_exhaustive]pub struct CodeCommitCodeDestination {
pub name: Option<String>,
}
Expand description
Information about the AWS CodeCommit repository to be created in AWS CodeStar. This is where the source code files provided with the project request will be uploaded after project creation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the AWS CodeCommit repository to be created in AWS CodeStar.
Implementations§
source§impl CodeCommitCodeDestination
impl CodeCommitCodeDestination
sourcepub fn builder() -> CodeCommitCodeDestinationBuilder
pub fn builder() -> CodeCommitCodeDestinationBuilder
Creates a new builder-style object to manufacture CodeCommitCodeDestination
.
Trait Implementations§
source§impl Clone for CodeCommitCodeDestination
impl Clone for CodeCommitCodeDestination
source§fn clone(&self) -> CodeCommitCodeDestination
fn clone(&self) -> CodeCommitCodeDestination
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 CodeCommitCodeDestination
impl Debug for CodeCommitCodeDestination
source§impl PartialEq<CodeCommitCodeDestination> for CodeCommitCodeDestination
impl PartialEq<CodeCommitCodeDestination> for CodeCommitCodeDestination
source§fn eq(&self, other: &CodeCommitCodeDestination) -> bool
fn eq(&self, other: &CodeCommitCodeDestination) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CodeCommitCodeDestination
Auto Trait Implementations§
impl RefUnwindSafe for CodeCommitCodeDestination
impl Send for CodeCommitCodeDestination
impl Sync for CodeCommitCodeDestination
impl Unpin for CodeCommitCodeDestination
impl UnwindSafe for CodeCommitCodeDestination
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