pub struct IrsSolveBindings<'a, T> {
pub a: MatrixMut<'a, T>,
pub b: MatrixRef<'a, T>,
pub x: MatrixMut<'a, T>,
pub device_workspace: &'a mut DeviceMemory<u8>,
pub dev_info: &'a mut DeviceMemory<i32>,
}Fields§
§a: MatrixMut<'a, T>§b: MatrixRef<'a, T>§x: MatrixMut<'a, T>§device_workspace: &'a mut DeviceMemory<u8>§dev_info: &'a mut DeviceMemory<i32>Trait Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for IrsSolveBindings<'a, T>
impl<'a, T> RefUnwindSafe for IrsSolveBindings<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for IrsSolveBindings<'a, T>
impl<'a, T> Sync for IrsSolveBindings<'a, T>where
T: Sync,
impl<'a, T> Unpin for IrsSolveBindings<'a, T>
impl<'a, T> UnsafeUnpin for IrsSolveBindings<'a, T>
impl<'a, T> !UnwindSafe for IrsSolveBindings<'a, T>
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