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