[][src]Struct jl_sys::jl_array_flags_t

#[repr(C)]
#[repr(align(2))]pub struct jl_array_flags_t {
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2], u16>,
}

Fields

_bitfield_1: __BindgenBitfieldUnit<[u8; 2], u16>

Implementations

impl jl_array_flags_t[src]

pub fn how(&self) -> u16[src]

pub fn set_how(&mut self, val: u16)[src]

pub fn ndims(&self) -> u16[src]

pub fn set_ndims(&mut self, val: u16)[src]

pub fn pooled(&self) -> u16[src]

pub fn set_pooled(&mut self, val: u16)[src]

pub fn ptrarray(&self) -> u16[src]

pub fn set_ptrarray(&mut self, val: u16)[src]

pub fn hasptr(&self) -> u16[src]

pub fn set_hasptr(&mut self, val: u16)[src]

pub fn isshared(&self) -> u16[src]

pub fn set_isshared(&mut self, val: u16)[src]

pub fn isaligned(&self) -> u16[src]

pub fn set_isaligned(&mut self, val: u16)[src]

pub fn new_bitfield_1(
    how: u16,
    ndims: u16,
    pooled: u16,
    ptrarray: u16,
    hasptr: u16,
    isshared: u16,
    isaligned: u16
) -> __BindgenBitfieldUnit<[u8; 2], u16>
[src]

Trait Implementations

impl Clone for jl_array_flags_t[src]

impl Copy for jl_array_flags_t[src]

impl Debug for jl_array_flags_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.