pub struct ProjectView {Show 21 fields
pub name: String,
pub arn: String,
pub description: String,
pub source_type: String,
pub source_location: String,
pub artifact_type: String,
pub artifact_location: Option<String>,
pub environment_type: String,
pub environment_image: String,
pub environment_compute_type: String,
pub service_role: String,
pub tags: Vec<TagView>,
pub created: String,
pub last_modified: String,
pub build_batch_config: Option<Value>,
pub cache: Option<Value>,
pub file_system_locations: Vec<Value>,
pub logs_config: Option<Value>,
pub secondary_artifacts: Vec<Value>,
pub secondary_sources: Vec<Value>,
pub vpc_config: Option<Value>,
}Expand description
Serializable view of a CodeBuild project.
Fields§
§name: String§arn: String§description: String§source_type: String§source_location: String§artifact_type: String§artifact_location: Option<String>§environment_type: String§environment_image: String§environment_compute_type: String§service_role: String§created: String§last_modified: String§build_batch_config: Option<Value>build_batch_config nested block.
cache: Option<Value>cache nested block.
file_system_locations: Vec<Value>file_system_locations nested blocks.
logs_config: Option<Value>logs_config nested block.
secondary_artifacts: Vec<Value>secondary_artifacts nested blocks.
secondary_sources: Vec<Value>secondary_sources nested blocks.
vpc_config: Option<Value>vpc_config nested block.
Trait Implementations§
Source§impl Clone for ProjectView
impl Clone for ProjectView
Source§fn clone(&self) -> ProjectView
fn clone(&self) -> ProjectView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProjectView
impl Debug for ProjectView
Source§impl<'de> Deserialize<'de> for ProjectView
impl<'de> Deserialize<'de> for ProjectView
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 From<&Project> for ProjectView
impl From<&Project> for ProjectView
Auto Trait Implementations§
impl Freeze for ProjectView
impl RefUnwindSafe for ProjectView
impl Send for ProjectView
impl Sync for ProjectView
impl Unpin for ProjectView
impl UnsafeUnpin for ProjectView
impl UnwindSafe for ProjectView
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.