#[repr(C)]pub struct jl_array_t {
pub data: *mut c_void,
pub length: usize,
pub flags: jl_array_flags_t,
pub elsize: u16,
pub offset: u32,
pub nrows: usize,
pub __bindgen_anon_1: jl_array_t__bindgen_ty_1,
}Fields§
§data: *mut c_void§length: usize§flags: jl_array_flags_t§elsize: u16§offset: u32§nrows: usize§__bindgen_anon_1: jl_array_t__bindgen_ty_1Trait Implementations§
Source§impl Clone for jl_array_t
impl Clone for jl_array_t
Source§fn clone(&self) -> jl_array_t
fn clone(&self) -> jl_array_t
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 moreimpl Copy for jl_array_t
Auto Trait Implementations§
impl Freeze for jl_array_t
impl RefUnwindSafe for jl_array_t
impl !Send for jl_array_t
impl !Sync for jl_array_t
impl Unpin for jl_array_t
impl UnwindSafe for jl_array_t
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