pub struct InputSet<I: Input> {
pub inputs: Vec<Vec<I>>,
}Expand description
Struct that holds the inputs.
Fields§
§inputs: Vec<Vec<I>>The inputs. The inputs are grouped by size.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<I> Freeze for InputSet<I>
impl<I> RefUnwindSafe for InputSet<I>where
I: RefUnwindSafe,
impl<I> Send for InputSet<I>where
I: Send,
impl<I> Sync for InputSet<I>where
I: Sync,
impl<I> Unpin for InputSet<I>where
I: Unpin,
impl<I> UnwindSafe for InputSet<I>where
I: UnwindSafe,
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