pub struct TRSM_<'a, 'b, F>where
F: TRSMNum,{
pub a: ArrayView2<'a, F>,
pub b: ArrayViewMut2<'b, F>,
pub alpha: F,
pub side: BLASSide,
pub uplo: BLASUpLo,
pub transa: BLASTranspose,
pub diag: BLASDiag,
pub layout: Option<BLASLayout>,
}
Fields§
§a: ArrayView2<'a, F>
§b: ArrayViewMut2<'b, F>
§alpha: F
§side: BLASSide
§uplo: BLASUpLo
§transa: BLASTranspose
§diag: BLASDiag
§layout: Option<BLASLayout>
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'b, F> Freeze for TRSM_<'a, 'b, F>where
F: Freeze,
impl<'a, 'b, F> RefUnwindSafe for TRSM_<'a, 'b, F>where
F: RefUnwindSafe,
impl<'a, 'b, F> Send for TRSM_<'a, 'b, F>
impl<'a, 'b, F> Sync for TRSM_<'a, 'b, F>where
F: Sync,
impl<'a, 'b, F> Unpin for TRSM_<'a, 'b, F>where
F: Unpin,
impl<'a, 'b, F> !UnwindSafe for TRSM_<'a, 'b, 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