pub struct LarftArgs<'a, TV, TTau = TV, TT = TV> {
pub v: MatrixRef<'a, TV>,
pub tau: VectorRef<'a, TTau>,
pub t: MatrixMut<'a, TT>,
pub workspace: ByteWorkspaceMut<'a>,
}Expand description
Runtime buffers for Larft::run.
Fields§
§v: MatrixRef<'a, TV>§tau: VectorRef<'a, TTau>§t: MatrixMut<'a, TT>§workspace: ByteWorkspaceMut<'a>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a, TV, TTau = TV, TT = TV> !UnwindSafe for LarftArgs<'a, TV, TTau, TT>
impl<'a, TV, TTau, TT> Freeze for LarftArgs<'a, TV, TTau, TT>
impl<'a, TV, TTau, TT> RefUnwindSafe for LarftArgs<'a, TV, TTau, TT>
impl<'a, TV, TTau, TT> Send for LarftArgs<'a, TV, TTau, TT>
impl<'a, TV, TTau, TT> Sync for LarftArgs<'a, TV, TTau, TT>
impl<'a, TV, TTau, TT> Unpin for LarftArgs<'a, TV, TTau, TT>
impl<'a, TV, TTau, TT> UnsafeUnpin for LarftArgs<'a, TV, TTau, TT>
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