pub struct Build {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: DateTime<Utc>,
pub end_time: Option<DateTime<Utc>>,
pub build_number: i64,
pub phases: Vec<BuildPhase>,
}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: DateTime<Utc>§end_time: Option<DateTime<Utc>>§build_number: i64§phases: Vec<BuildPhase>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Build
impl RefUnwindSafe for Build
impl Send for Build
impl Sync for Build
impl Unpin for Build
impl UnsafeUnpin for Build
impl UnwindSafe for Build
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.