#[repr(C)]pub struct SuperMatrix {
pub Stype: Stype_t,
pub Dtype: Dtype_t,
pub Mtype: Mtype_t,
pub nrow: int_t,
pub ncol: int_t,
pub Store: *mut c_void,
}Fields§
§Stype: Stype_t§Dtype: Dtype_t§Mtype: Mtype_t§nrow: int_t§ncol: int_t§Store: *mut c_voidImplementations§
Source§impl SuperMatrix
impl SuperMatrix
pub fn data_to_vec(&self) -> Option<Vec<f64>>
Trait Implementations§
Source§impl Clone for SuperMatrix
impl Clone for SuperMatrix
Source§fn clone(&self) -> SuperMatrix
fn clone(&self) -> SuperMatrix
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SuperMatrix
Auto Trait Implementations§
impl Freeze for SuperMatrix
impl RefUnwindSafe for SuperMatrix
impl !Send for SuperMatrix
impl !Sync for SuperMatrix
impl Unpin for SuperMatrix
impl UnwindSafe for SuperMatrix
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