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