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