pub struct SingleMachineEval {Show 15 fields
pub format: String,
pub version: u32,
pub host_brand: String,
pub fingerprint: Option<String>,
pub silicera_version: String,
pub calm: CalmCheckReport,
pub harness: HarnessSuiteReport,
pub artifacts: NativeArtifactSuite,
pub alignment_matters: bool,
pub alignment_note: String,
pub placement_fastest: String,
pub best_thread_count: usize,
pub threads_note: String,
pub deferred: Vec<String>,
pub summary: String,
}Expand description
Full single-machine evaluation report.
Fields§
§format: StringFormat id.
version: u32Schema version.
host_brand: StringHost brand.
fingerprint: Option<String>Fingerprint.
silicera_version: StringSilicera version.
calm: CalmCheckReportCalm check.
harness: HarnessSuiteReportHarness suite (all domains).
artifacts: NativeArtifactSuiteNative artifact suite.
alignment_matters: boolAlignment recommendation.
alignment_note: StringAlignment one-liner.
placement_fastest: StringPlacement fastest strategy.
best_thread_count: usizeThread sweep best count.
threads_note: StringThread sweep note.
deferred: Vec<String>Honest research boundary.
summary: StringSummary for humans.
Trait Implementations§
Source§impl Clone for SingleMachineEval
impl Clone for SingleMachineEval
Source§fn clone(&self) -> SingleMachineEval
fn clone(&self) -> SingleMachineEval
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 SingleMachineEval
impl Debug for SingleMachineEval
Source§impl<'de> Deserialize<'de> for SingleMachineEval
impl<'de> Deserialize<'de> for SingleMachineEval
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 SingleMachineEval
impl RefUnwindSafe for SingleMachineEval
impl Send for SingleMachineEval
impl Sync for SingleMachineEval
impl Unpin for SingleMachineEval
impl UnsafeUnpin for SingleMachineEval
impl UnwindSafe for SingleMachineEval
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more