pub enum CubeCountSettings {
Input {
pos: usize,
},
Output {
pos: usize,
},
Custom(CubeCount),
}
Expand description
The position of the input or output to calculate the number of cubes to launch.
Variants§
Auto Trait Implementations§
impl Freeze for CubeCountSettings
impl RefUnwindSafe for CubeCountSettings
impl Send for CubeCountSettings
impl Sync for CubeCountSettings
impl Unpin for CubeCountSettings
impl UnwindSafe for CubeCountSettings
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