#[repr(C)]pub struct gsl_matrix_long {
pub size1: size_t,
pub size2: size_t,
pub tda: size_t,
pub data: *mut c_long,
pub block: *mut gsl_block_long,
pub owner: c_int,
}Fields§
§size1: size_t§size2: size_t§tda: size_t§data: *mut c_long§block: *mut gsl_block_long§owner: c_intTrait Implementations§
Source§impl Clone for gsl_matrix_long
impl Clone for gsl_matrix_long
Source§fn clone(&self) -> gsl_matrix_long
fn clone(&self) -> gsl_matrix_long
Returns a copy 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 moreSource§impl Debug for gsl_matrix_long
impl Debug for gsl_matrix_long
impl Copy for gsl_matrix_long
Auto Trait Implementations§
impl Freeze for gsl_matrix_long
impl RefUnwindSafe for gsl_matrix_long
impl !Send for gsl_matrix_long
impl !Sync for gsl_matrix_long
impl Unpin for gsl_matrix_long
impl UnwindSafe for gsl_matrix_long
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