pub struct Build {Show 19 fields
pub id: Option<String>,
pub arn: Option<String>,
pub build_number: Option<i64>,
pub build_status: Option<String>,
pub start_time: Option<f64>,
pub end_time: Option<f64>,
pub current_phase: Option<String>,
pub build_complete: bool,
pub initiator: Option<String>,
pub source_version: Option<String>,
pub project_name: Option<String>,
pub phases: Option<Vec<BuildPhase>>,
pub source: Option<ProjectSource>,
pub secondary_sources: Option<Vec<ProjectSource>>,
pub secondary_artifacts: Option<Vec<BuildArtifacts>>,
pub artifacts: Option<BuildArtifacts>,
pub logs: Option<LogsLocation>,
pub vpc_config: Option<VpcConfig>,
pub environment: Option<ProjectEnvironment>,
}Fields§
§id: Option<String>§arn: Option<String>§build_number: Option<i64>§build_status: Option<String>§start_time: Option<f64>§end_time: Option<f64>§current_phase: Option<String>§build_complete: bool§initiator: Option<String>§source_version: Option<String>§project_name: Option<String>§phases: Option<Vec<BuildPhase>>§source: Option<ProjectSource>§secondary_sources: Option<Vec<ProjectSource>>§secondary_artifacts: Option<Vec<BuildArtifacts>>§artifacts: Option<BuildArtifacts>§logs: Option<LogsLocation>§vpc_config: Option<VpcConfig>§environment: Option<ProjectEnvironment>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Build
impl<'de> Deserialize<'de> for Build
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 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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.