pub struct OptimizedArgs<const N: usize, D: Dialect> {
pub args: [Variable<D>; N],
pub optimization_factor: Option<usize>,
}
Fields§
§args: [Variable<D>; N]
§optimization_factor: Option<usize>
Implementations§
Auto Trait Implementations§
impl<const N: usize, D> Freeze for OptimizedArgs<N, D>
impl<const N: usize, D> RefUnwindSafe for OptimizedArgs<N, D>where
D: RefUnwindSafe,
impl<const N: usize, D> Send for OptimizedArgs<N, D>
impl<const N: usize, D> Sync for OptimizedArgs<N, D>
impl<const N: usize, D> Unpin for OptimizedArgs<N, D>where
D: Unpin,
impl<const N: usize, D> UnwindSafe for OptimizedArgs<N, D>where
D: 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