[][src]Union smash::lib::L2CValueInner

#[repr(C)]pub union L2CValueInner {
    pub raw: u64,
    pub raw_float: f32,
    pub raw_pointer: *mut c_void,
    pub raw_table: *mut L2CTable,
    pub raw_innerfunc: *mut L2CInnerFunctionBase,
}

Fields

raw: u64raw_float: f32raw_pointer: *mut c_voidraw_table: *mut L2CTableraw_innerfunc: *mut L2CInnerFunctionBase

Trait Implementations

impl Clone for L2CValueInner[src]

impl Copy for L2CValueInner[src]

impl Debug for L2CValueInner[src]

impl Default for L2CValueInner[src]

Auto Trait Implementations

impl RefUnwindSafe for L2CValueInner

impl !Send for L2CValueInner

impl !Sync for L2CValueInner

impl Unpin for L2CValueInner

impl UnwindSafe for L2CValueInner

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.