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