pub enum ComputeLane {
Fast,
Normal,
Batch,
}Expand description
Compute lane priority for solver scheduling.
Variants§
Fast
Low-latency lane for small problems.
Normal
Default throughput lane.
Batch
Batch lane for large problems.
Trait Implementations§
Source§impl Clone for ComputeLane
impl Clone for ComputeLane
Source§fn clone(&self) -> ComputeLane
fn clone(&self) -> ComputeLane
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 ComputeLane
impl Debug for ComputeLane
Source§impl<'de> Deserialize<'de> for ComputeLane
impl<'de> Deserialize<'de> for ComputeLane
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
Source§impl PartialEq for ComputeLane
impl PartialEq for ComputeLane
Source§impl Serialize for ComputeLane
impl Serialize for ComputeLane
impl Copy for ComputeLane
impl Eq for ComputeLane
impl StructuralPartialEq for ComputeLane
Auto Trait Implementations§
impl Freeze for ComputeLane
impl RefUnwindSafe for ComputeLane
impl Send for ComputeLane
impl Sync for ComputeLane
impl Unpin for ComputeLane
impl UnsafeUnpin for ComputeLane
impl UnwindSafe for ComputeLane
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