pub struct GEMV_<'a, 'x, 'y, F>where
F: GEMVNum,{
pub a: ArrayView2<'a, F>,
pub x: ArrayView1<'x, F>,
pub y: Option<ArrayViewMut1<'y, F>>,
pub alpha: F,
pub beta: F,
pub trans: BLASTranspose,
}
Fields§
§a: ArrayView2<'a, F>
§x: ArrayView1<'x, F>
§y: Option<ArrayViewMut1<'y, F>>
§alpha: F
§beta: F
§trans: BLASTranspose
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'x, 'y, F> Freeze for GEMV_<'a, 'x, 'y, F>where
F: Freeze,
impl<'a, 'x, 'y, F> RefUnwindSafe for GEMV_<'a, 'x, 'y, F>where
F: RefUnwindSafe,
impl<'a, 'x, 'y, F> Send for GEMV_<'a, 'x, 'y, F>
impl<'a, 'x, 'y, F> Sync for GEMV_<'a, 'x, 'y, F>where
F: Sync,
impl<'a, 'x, 'y, F> Unpin for GEMV_<'a, 'x, 'y, F>where
F: Unpin,
impl<'a, 'x, 'y, F> !UnwindSafe for GEMV_<'a, 'x, 'y, 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