pub struct ChosenInfo {
pub id: String,
pub config: String,
pub summary: Summary,
}Expand description
The configuration this run recommends: fastest median among the candidates that were admitted by the gate and measured successfully.
Fields§
§id: StringIts canonical config.v1 ID.
config: StringIts dimension assignments, e.g. block_x=128 tile=256.
summary: SummaryIts timing summary. Present by construction — being measured is what made it eligible.
Trait Implementations§
Source§impl Clone for ChosenInfo
impl Clone for ChosenInfo
Source§fn clone(&self) -> ChosenInfo
fn clone(&self) -> ChosenInfo
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 ChosenInfo
impl Debug for ChosenInfo
Source§impl<'de> Deserialize<'de> for ChosenInfo
impl<'de> Deserialize<'de> for ChosenInfo
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 ChosenInfo
impl RefUnwindSafe for ChosenInfo
impl Send for ChosenInfo
impl Sync for ChosenInfo
impl Unpin for ChosenInfo
impl UnsafeUnpin for ChosenInfo
impl UnwindSafe for ChosenInfo
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