pub struct BuildInfo {
pub built_by: Option<String>,
pub built_at: Option<String>,
pub host: Option<String>,
pub compiler: Option<String>,
pub rustbridge_version: Option<String>,
pub git: Option<GitInfo>,
pub custom: Option<HashMap<String, String>>,
}Expand description
Build information (all fields optional).
Contains metadata about when and how the bundle was built. Useful for traceability and debugging but not required.
Fields§
§built_by: Option<String>Who/what built this bundle (e.g., “GitHub Actions”, “local”)
built_at: Option<String>When the bundle was built (ISO 8601 timestamp).
host: Option<String>Host triple where the build ran.
compiler: Option<String>Compiler version used.
rustbridge_version: Option<String>rustbridge version used to create the bundle.
git: Option<GitInfo>Git repository information (optional).
custom: Option<HashMap<String, String>>Custom key/value metadata for informational purposes. Can include arbitrary data like repository URL, CI job ID, etc.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BuildInfo
impl<'de> Deserialize<'de> for BuildInfo
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 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