pub struct ProjectSummary {
pub project_arn: Option<String>,
pub project_id: Option<String>,
}
Expand description
Information about the metadata for a project.
Fields§
§project_arn: Option<String>
The Amazon Resource Name (ARN) of the project.
project_id: Option<String>
The ID of the project.
Trait Implementations§
Source§impl Clone for ProjectSummary
impl Clone for ProjectSummary
Source§fn clone(&self) -> ProjectSummary
fn clone(&self) -> ProjectSummary
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 ProjectSummary
impl Debug for ProjectSummary
Source§impl Default for ProjectSummary
impl Default for ProjectSummary
Source§fn default() -> ProjectSummary
fn default() -> ProjectSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectSummary
impl<'de> Deserialize<'de> for ProjectSummary
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 ProjectSummary
impl PartialEq for ProjectSummary
impl StructuralPartialEq for ProjectSummary
Auto Trait Implementations§
impl Freeze for ProjectSummary
impl RefUnwindSafe for ProjectSummary
impl Send for ProjectSummary
impl Sync for ProjectSummary
impl Unpin for ProjectSummary
impl UnwindSafe for ProjectSummary
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