pub struct Row {
pub id: String,
pub name: String,
pub runtime: Option<String>,
pub quantization: Option<String>,
pub status: Status,
}Expand description
One row of the bench: the model, what runs it, and how it is doing.
Fields§
§id: StringThe record id, for addressing the model again.
name: StringThe model’s display name.
runtime: Option<String>The runtime that serves it, when it resolves to one.
quantization: Option<String>The quantization its weights carry, when it is known.
status: StatusWhere it is in the bench.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Row
Auto Trait Implementations§
impl Freeze for Row
impl RefUnwindSafe for Row
impl Send for Row
impl Sync for Row
impl Unpin for Row
impl UnsafeUnpin for Row
impl UnwindSafe for Row
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