pub struct MethodsPlsMatrix {
pub values: Vec<f64>,
pub rows: usize,
pub cols: usize,
}Expand description
Row-major f64 matrix passed from an explicitly capable provider to the
portable Methods PLS controller. It never crosses the public ABI.
Fields§
§values: Vec<f64>§rows: usize§cols: usizeImplementations§
Trait Implementations§
Source§impl Clone for MethodsPlsMatrix
impl Clone for MethodsPlsMatrix
Source§fn clone(&self) -> MethodsPlsMatrix
fn clone(&self) -> MethodsPlsMatrix
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 MethodsPlsMatrix
impl Debug for MethodsPlsMatrix
Source§impl PartialEq for MethodsPlsMatrix
impl PartialEq for MethodsPlsMatrix
impl StructuralPartialEq for MethodsPlsMatrix
Auto Trait Implementations§
impl Freeze for MethodsPlsMatrix
impl RefUnwindSafe for MethodsPlsMatrix
impl Send for MethodsPlsMatrix
impl Sync for MethodsPlsMatrix
impl Unpin for MethodsPlsMatrix
impl UnsafeUnpin for MethodsPlsMatrix
impl UnwindSafe for MethodsPlsMatrix
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