pub struct BuildInfo {
pub product_config: Option<String>,
pub board_config: Option<String>,
pub version: Option<String>,
pub latest_commit_date: Option<String>,
pub platform_version: Option<String>,
pub product_version: Option<String>,
/* private fields */
}
Fields§
§product_config: Option<String>
A description of the product configuration used at build time, determined by the value passed as PRODUCT in ‘fx set’. See ‘fx list-products’ for a list of possible values.
board_config: Option<String>
A description of the board configuration used at build time, determined by
the value passed as BOARD in ‘fx set’. See fx list-boards
for a list of
possible values.
version: Option<String>
A description of the version of the build. Defaults to the same string as latest_commit_date.
latest_commit_date: Option<String>
The timestamp of the most recent commit to the integration repository (specifically, the “CommitDate” field) formatted in strict ISO 8601 format in the UTC timezone. Example: “2019-03-28T15:42:20+00:00”
platform_version: Option<String>
The version of the Fuchsia platform included in the build. Provided by Assembly from platform artifacts.
product_version: Option<String>
The product version of this build.
Provided in Assembly product configuration.
Defaults to the same value as version
.
Trait Implementations§
Source§impl<D: ResourceDialect> Decode<BuildInfo, D> for BuildInfo
impl<D: ResourceDialect> Decode<BuildInfo, D> for BuildInfo
Source§impl TypeMarker for BuildInfo
impl TypeMarker for BuildInfo
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.Source§impl ValueTypeMarker for BuildInfo
impl ValueTypeMarker for BuildInfo
impl Persistable for BuildInfo
impl StructuralPartialEq for BuildInfo
Auto Trait Implementations§
impl Freeze for BuildInfo
impl RefUnwindSafe for BuildInfo
impl Send for BuildInfo
impl Sync for BuildInfo
impl Unpin for BuildInfo
impl UnwindSafe for BuildInfo
Blanket Implementations§
§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
§type MarkerInResultUnion = T
type MarkerInResultUnion = T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)