pub struct SubjectDoc {
pub name: &'static str,
pub fitness: f64,
}Expand description
A profiled evaluation subject (language, framework, or VM system) — compact
index entry; expand with describe for full per-axis scores and evidence.
Fields§
§name: &'static strCanonical name (rust, pytorch, …).
fitness: f64Composite agentic fitness (0.0–1.0, mean of axes).
Trait Implementations§
Source§impl Clone for SubjectDoc
impl Clone for SubjectDoc
Source§fn clone(&self) -> SubjectDoc
fn clone(&self) -> SubjectDoc
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 SubjectDoc
impl Debug for SubjectDoc
Auto Trait Implementations§
impl Freeze for SubjectDoc
impl RefUnwindSafe for SubjectDoc
impl Send for SubjectDoc
impl Sync for SubjectDoc
impl Unpin for SubjectDoc
impl UnsafeUnpin for SubjectDoc
impl UnwindSafe for SubjectDoc
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