pub struct BuildView {Show 18 fields
pub id: String,
pub arn: String,
pub project_name: String,
pub build_status: String,
pub current_phase: String,
pub source_type: String,
pub source_location: String,
pub source_version: 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 start_time: String,
pub end_time: Option<String>,
pub build_number: i64,
pub phases: Vec<BuildPhaseView>,
}Expand description
Serializable view of a CodeBuild build.
Fields§
§id: String§arn: String§project_name: String§build_status: String§current_phase: String§source_type: String§source_location: String§source_version: String§artifact_type: String§artifact_location: Option<String>§environment_type: String§environment_image: String§environment_compute_type: String§service_role: String§start_time: String§end_time: Option<String>§build_number: i64§phases: Vec<BuildPhaseView>Trait Implementations§
Source§impl<'de> Deserialize<'de> for BuildView
impl<'de> Deserialize<'de> for BuildView
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
Auto Trait Implementations§
impl Freeze for BuildView
impl RefUnwindSafe for BuildView
impl Send for BuildView
impl Sync for BuildView
impl Unpin for BuildView
impl UnsafeUnpin for BuildView
impl UnwindSafe for BuildView
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.