pub struct TriSolveParams {
pub n: u32,
pub m: u32,
pub batch: u32,
}Fields§
§n: u32System size (square L is N×N).
m: u32Number of right-hand-side columns.
batch: u32Batch count (leading dim).
Trait Implementations§
Source§impl Clone for TriSolveParams
impl Clone for TriSolveParams
Source§fn clone(&self) -> TriSolveParams
fn clone(&self) -> TriSolveParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TriSolveParams
impl Debug for TriSolveParams
impl Copy for TriSolveParams
Auto Trait Implementations§
impl Freeze for TriSolveParams
impl RefUnwindSafe for TriSolveParams
impl Send for TriSolveParams
impl Sync for TriSolveParams
impl Unpin for TriSolveParams
impl UnsafeUnpin for TriSolveParams
impl UnwindSafe for TriSolveParams
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