pub struct RepositoryMetadata {
pub arn: Option<String>,
pub account_id: Option<String>,
pub clone_url_http: Option<String>,
pub clone_url_ssh: Option<String>,
pub creation_date: Option<f64>,
pub default_branch: Option<String>,
pub last_modified_date: Option<f64>,
pub repository_description: Option<String>,
pub repository_id: Option<String>,
pub repository_name: Option<String>,
}Expand description
Information about a repository.
Fields§
§arn: Option<String>The Amazon Resource Name (ARN) of the repository.
account_id: Option<String>The ID of the AWS account associated with the repository.
clone_url_http: Option<String>The URL to use for cloning the repository over HTTPS.
clone_url_ssh: Option<String>The URL to use for cloning the repository over SSH.
creation_date: Option<f64>The date and time the repository was created, in timestamp format.
default_branch: Option<String>The repository's default branch name.
last_modified_date: Option<f64>The date and time the repository was last modified, in timestamp format.
repository_description: Option<String>A comment or description about the repository.
repository_id: Option<String>The ID of the repository.
repository_name: Option<String>The repository's name.
Trait Implementations§
Source§impl Clone for RepositoryMetadata
impl Clone for RepositoryMetadata
Source§fn clone(&self) -> RepositoryMetadata
fn clone(&self) -> RepositoryMetadata
Returns a duplicate 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 RepositoryMetadata
impl Debug for RepositoryMetadata
Source§impl Default for RepositoryMetadata
impl Default for RepositoryMetadata
Source§fn default() -> RepositoryMetadata
fn default() -> RepositoryMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RepositoryMetadata
impl<'de> Deserialize<'de> for RepositoryMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RepositoryMetadata
impl PartialEq for RepositoryMetadata
impl StructuralPartialEq for RepositoryMetadata
Auto Trait Implementations§
impl Freeze for RepositoryMetadata
impl RefUnwindSafe for RepositoryMetadata
impl Send for RepositoryMetadata
impl Sync for RepositoryMetadata
impl Unpin for RepositoryMetadata
impl UnwindSafe for RepositoryMetadata
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