pub struct RunMetadata {
pub entrypoint: String,
pub profile: String,
pub cargo_features: Vec<String>,
pub cfg: Vec<String>,
pub analysis_id: Option<String>,
pub build_id: Option<String>,
}Expand description
Build / process metadata for a single probe run.
Fields§
§entrypoint: StringAnalyzed or probed entrypoint, e.g. train or Model::forward.
profile: StringCargo profile, e.g. debug or release.
cargo_features: Vec<String>Enabled Cargo features at probe time.
cfg: Vec<String>Relevant cfg flags observed by the probe.
analysis_id: Option<String>Optional analysis identity this trace was captured against (e.g. model IR analysis_id).
Omitted for backward compatibility; when present, importers must check it.
build_id: Option<String>Optional build identity (package/features/profile fingerprint) for the probed binary. Omitted for backward compatibility; when present, importers must check it.
Trait Implementations§
Source§impl Clone for RunMetadata
impl Clone for RunMetadata
Source§fn clone(&self) -> RunMetadata
fn clone(&self) -> RunMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RunMetadata
impl Debug for RunMetadata
Source§impl<'de> Deserialize<'de> for RunMetadata
impl<'de> Deserialize<'de> for RunMetadata
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
impl Eq for RunMetadata
Source§impl PartialEq for RunMetadata
impl PartialEq for RunMetadata
Source§impl Serialize for RunMetadata
impl Serialize for RunMetadata
impl StructuralPartialEq for RunMetadata
Auto Trait Implementations§
impl Freeze for RunMetadata
impl RefUnwindSafe for RunMetadata
impl Send for RunMetadata
impl Sync for RunMetadata
impl Unpin for RunMetadata
impl UnsafeUnpin for RunMetadata
impl UnwindSafe for RunMetadata
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