#[non_exhaustive]pub struct ListCodeRepositoriesOutput {
pub code_repository_summary_list: Option<Vec<CodeRepositorySummary>>,
pub next_token: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.code_repository_summary_list: Option<Vec<CodeRepositorySummary>>
Gets a list of summaries of the Git repositories. Each summary specifies the following values for the repository:
-
Name
-
Amazon Resource Name (ARN)
-
Creation time
-
Last modified time
-
Configuration information, including the URL location of the repository and the ARN of the Amazon Web Services Secrets Manager secret that contains the credentials used to access the repository.
next_token: Option<String>
If the result of a ListCodeRepositoriesOutput
request was truncated, the response includes a NextToken
. To get the next set of Git repositories, use the token in the next request.
Implementations
sourceimpl ListCodeRepositoriesOutput
impl ListCodeRepositoriesOutput
sourcepub fn code_repository_summary_list(&self) -> Option<&[CodeRepositorySummary]>
pub fn code_repository_summary_list(&self) -> Option<&[CodeRepositorySummary]>
Gets a list of summaries of the Git repositories. Each summary specifies the following values for the repository:
-
Name
-
Amazon Resource Name (ARN)
-
Creation time
-
Last modified time
-
Configuration information, including the URL location of the repository and the ARN of the Amazon Web Services Secrets Manager secret that contains the credentials used to access the repository.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the result of a ListCodeRepositoriesOutput
request was truncated, the response includes a NextToken
. To get the next set of Git repositories, use the token in the next request.
sourceimpl ListCodeRepositoriesOutput
impl ListCodeRepositoriesOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListCodeRepositoriesOutput
Trait Implementations
sourceimpl Clone for ListCodeRepositoriesOutput
impl Clone for ListCodeRepositoriesOutput
sourcefn clone(&self) -> ListCodeRepositoriesOutput
fn clone(&self) -> ListCodeRepositoriesOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ListCodeRepositoriesOutput
impl Debug for ListCodeRepositoriesOutput
sourceimpl PartialEq<ListCodeRepositoriesOutput> for ListCodeRepositoriesOutput
impl PartialEq<ListCodeRepositoriesOutput> for ListCodeRepositoriesOutput
sourcefn eq(&self, other: &ListCodeRepositoriesOutput) -> bool
fn eq(&self, other: &ListCodeRepositoriesOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ListCodeRepositoriesOutput) -> bool
fn ne(&self, other: &ListCodeRepositoriesOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for ListCodeRepositoriesOutput
Auto Trait Implementations
impl RefUnwindSafe for ListCodeRepositoriesOutput
impl Send for ListCodeRepositoriesOutput
impl Sync for ListCodeRepositoriesOutput
impl Unpin for ListCodeRepositoriesOutput
impl UnwindSafe for ListCodeRepositoriesOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more