pub struct LabSessionSummary {
pub product: String,
pub silicera_version: String,
pub phase: String,
pub brand_line: String,
pub host_brand: String,
pub fingerprint: Option<String>,
pub captured_at: String,
pub rows: Vec<LabSessionRow>,
pub caveats: Vec<String>,
}Expand description
Exportable lab session summary (measured rows only).
Fields§
§product: StringProduct name.
silicera_version: StringSilicera version.
phase: StringPhase marker.
brand_line: StringBrand line.
host_brand: StringHost CPU brand string.
fingerprint: Option<String>Fingerprint when supported.
captured_at: StringRFC3339 capture time.
rows: Vec<LabSessionRow>Measured workloads from the last pass.
caveats: Vec<String>Caveats.
Implementations§
Trait Implementations§
Source§impl Clone for LabSessionSummary
impl Clone for LabSessionSummary
Source§fn clone(&self) -> LabSessionSummary
fn clone(&self) -> LabSessionSummary
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 LabSessionSummary
impl Debug for LabSessionSummary
Auto Trait Implementations§
impl Freeze for LabSessionSummary
impl RefUnwindSafe for LabSessionSummary
impl Send for LabSessionSummary
impl Sync for LabSessionSummary
impl Unpin for LabSessionSummary
impl UnsafeUnpin for LabSessionSummary
impl UnwindSafe for LabSessionSummary
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