pub struct FutharkTuningParam {
pub name: String,
pub default_value: i64,
pub min_value: i64,
pub max_value: i64,
pub description: String,
}Expand description
Futhark tuning parameter
Fields§
§name: String§default_value: i64§min_value: i64§max_value: i64§description: StringTrait Implementations§
Source§impl Clone for FutharkTuningParam
impl Clone for FutharkTuningParam
Source§fn clone(&self) -> FutharkTuningParam
fn clone(&self) -> FutharkTuningParam
Returns a duplicate of the value. Read more
1.0.0 · 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 FutharkTuningParam
impl Debug for FutharkTuningParam
Auto Trait Implementations§
impl Freeze for FutharkTuningParam
impl RefUnwindSafe for FutharkTuningParam
impl Send for FutharkTuningParam
impl Sync for FutharkTuningParam
impl Unpin for FutharkTuningParam
impl UnsafeUnpin for FutharkTuningParam
impl UnwindSafe for FutharkTuningParam
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