pub struct SYR2K_<'a, 'b, 'c, F>where
F: SYR2KNum,{
pub a: ArrayView2<'a, F>,
pub b: ArrayView2<'b, F>,
pub c: Option<ArrayViewMut2<'c, F>>,
pub alpha: F,
pub beta: F,
pub uplo: BLASUpLo,
pub trans: BLASTranspose,
pub layout: Option<BLASLayout>,
}Fields§
§a: ArrayView2<'a, F>§b: ArrayView2<'b, F>§c: Option<ArrayViewMut2<'c, F>>§alpha: F§beta: F§uplo: BLASUpLo§trans: BLASTranspose§layout: Option<BLASLayout>Trait Implementations§
Auto Trait Implementations§
impl<'a, 'b, 'c, F> Freeze for SYR2K_<'a, 'b, 'c, F>where
F: Freeze,
impl<'a, 'b, 'c, F> RefUnwindSafe for SYR2K_<'a, 'b, 'c, F>where
F: RefUnwindSafe,
impl<'a, 'b, 'c, F> Send for SYR2K_<'a, 'b, 'c, F>
impl<'a, 'b, 'c, F> Sync for SYR2K_<'a, 'b, 'c, F>where
F: Sync,
impl<'a, 'b, 'c, F> Unpin for SYR2K_<'a, 'b, 'c, F>where
F: Unpin,
impl<'a, 'b, 'c, F> !UnwindSafe for SYR2K_<'a, 'b, 'c, F>
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