pub enum O1Layers {
All,
Deep(usize),
List(Vec<usize>),
}Expand description
Which layers run the O(1) kernel.
Variants§
All
Deep(usize)
The N deepest layers (deep-N ladder of the price map; the early stack is the most sink-dependent, depth converts best).
List(Vec<usize>)
Explicit layer indices.
Trait Implementations§
impl Eq for O1Layers
impl StructuralPartialEq for O1Layers
Auto Trait Implementations§
impl Freeze for O1Layers
impl RefUnwindSafe for O1Layers
impl Send for O1Layers
impl Sync for O1Layers
impl Unpin for O1Layers
impl UnsafeUnpin for O1Layers
impl UnwindSafe for O1Layers
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