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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ComputeLane
Source§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
impl Eq for ComputeLane
Source§impl PartialEq for ComputeLane
impl PartialEq for ComputeLane
Source§fn eq(&self, other: &ComputeLane) -> bool
fn eq(&self, other: &ComputeLane) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ComputeLane
impl Serialize 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