#[non_exhaustive]pub struct GetSourceRepositoryOutput {
pub space_name: String,
pub project_name: String,
pub name: String,
pub description: Option<String>,
pub last_updated_time: DateTime,
pub created_time: DateTime,
/* private fields */
}
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.space_name: String
The name of the space.
project_name: String
The name of the project in the space.
name: String
The name of the source repository.
description: Option<String>
The description of the source repository.
last_updated_time: DateTime
The time the source repository was last updated, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.
created_time: DateTime
The time the source repository was created, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.
Implementations§
source§impl GetSourceRepositoryOutput
impl GetSourceRepositoryOutput
sourcepub fn space_name(&self) -> &str
pub fn space_name(&self) -> &str
The name of the space.
sourcepub fn project_name(&self) -> &str
pub fn project_name(&self) -> &str
The name of the project in the space.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the source repository.
sourcepub fn last_updated_time(&self) -> &DateTime
pub fn last_updated_time(&self) -> &DateTime
The time the source repository was last updated, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.
sourcepub fn created_time(&self) -> &DateTime
pub fn created_time(&self) -> &DateTime
The time the source repository was created, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.
source§impl GetSourceRepositoryOutput
impl GetSourceRepositoryOutput
sourcepub fn builder() -> GetSourceRepositoryOutputBuilder
pub fn builder() -> GetSourceRepositoryOutputBuilder
Creates a new builder-style object to manufacture GetSourceRepositoryOutput
.
Trait Implementations§
source§impl Clone for GetSourceRepositoryOutput
impl Clone for GetSourceRepositoryOutput
source§fn clone(&self) -> GetSourceRepositoryOutput
fn clone(&self) -> GetSourceRepositoryOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetSourceRepositoryOutput
impl Debug for GetSourceRepositoryOutput
source§impl PartialEq for GetSourceRepositoryOutput
impl PartialEq for GetSourceRepositoryOutput
source§fn eq(&self, other: &GetSourceRepositoryOutput) -> bool
fn eq(&self, other: &GetSourceRepositoryOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetSourceRepositoryOutput
impl RequestId for GetSourceRepositoryOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetSourceRepositoryOutput
Auto Trait Implementations§
impl Freeze for GetSourceRepositoryOutput
impl RefUnwindSafe for GetSourceRepositoryOutput
impl Send for GetSourceRepositoryOutput
impl Sync for GetSourceRepositoryOutput
impl Unpin for GetSourceRepositoryOutput
impl UnwindSafe for GetSourceRepositoryOutput
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
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>
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>
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 more