[][src]Union evil_janet::JanetTArrayView__bindgen_ty_1

#[repr(C)]pub union JanetTArrayView__bindgen_ty_1 {
    pub pointer: *mut c_void,
    pub u8_: *mut u8,
    pub s8: *mut i8,
    pub u16_: *mut u16,
    pub s16: *mut i16,
    pub u32_: *mut u32,
    pub s32: *mut i32,
    pub u64_: *mut u64,
    pub s64: *mut i64,
    pub f32_: *mut f32,
    pub f64_: *mut f64,
    // some fields omitted
}

Fields

pointer: *mut c_voidu8_: *mut u8s8: *mut i8u16_: *mut u16s16: *mut i16u32_: *mut u32s32: *mut i32u64_: *mut u64s64: *mut i64f32_: *mut f32f64_: *mut f64

Trait Implementations

impl Clone for JanetTArrayView__bindgen_ty_1[src]

impl Copy for JanetTArrayView__bindgen_ty_1[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.