pub struct BuildInfo {Show 18 fields
pub wasm_runtime_created: &'static str,
pub wasm_runtime_size: &'static str,
pub wasm_runtime_blake3_hash: &'static str,
pub wasm_runtime_wasmtime_version: &'static str,
pub package_name: &'static str,
pub package_version: &'static str,
pub features: Vec<&'static str>,
pub target: &'static str,
pub opt_level: &'static str,
pub profile: &'static str,
pub debug: bool,
pub rustc: &'static str,
pub built_time_utc: &'static str,
pub ci_platform: Option<&'static str>,
pub git_commit_hash: Option<&'static str>,
pub git_head_ref: Option<&'static str>,
pub git_version: Option<&'static str>,
pub git_dirty: bool,
}Expand description
The build information for the hyperlight-wasm crate
Fields§
§wasm_runtime_created: &'static strThe date and time the hyperlight-wasm-runtime was built
wasm_runtime_size: &'static strThe size of the hyperlight-wasm-runtime binary
wasm_runtime_blake3_hash: &'static strThe blake3 hash of the hyperlight-wasm-runtime binary
wasm_runtime_wasmtime_version: &'static strThe version of wasmtime being used by hyperlight-wasm
package_name: &'static strThe name of the package
package_version: &'static strThe version of the package
features: Vec<&'static str>The features enabled for the package
target: &'static strThe target triple for the build
opt_level: &'static strThe optimization level for the build
profile: &'static strThe profile for the build
debug: boolWhether the build was in debug mode
rustc: &'static strThe path to rustc used for the build
built_time_utc: &'static strThe date and time the package was built
ci_platform: Option<&'static str>The CI platform used for the build
git_commit_hash: Option<&'static str>The git commit hash for the build
git_head_ref: Option<&'static str>The git head ref for the build
git_version: Option<&'static str>The git version for the build
git_dirty: boolWhether the git repo was dirty when the package was built
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BuildInfo
impl RefUnwindSafe for BuildInfo
impl Send for BuildInfo
impl Sync for BuildInfo
impl Unpin for BuildInfo
impl UnsafeUnpin for BuildInfo
impl UnwindSafe for BuildInfo
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