Union dart_sdk_sys::_Dart_NativeArgument_Value[][src]

#[repr(C)]pub union _Dart_NativeArgument_Value {
    pub as_bool: bool,
    pub as_int32: i32,
    pub as_uint32: u32,
    pub as_int64: i64,
    pub as_uint64: u64,
    pub as_double: f64,
    pub as_string: _Dart_NativeArgument_Value__bindgen_ty_1,
    pub as_native_fields: _Dart_NativeArgument_Value__bindgen_ty_2,
    pub as_instance: Dart_Handle,
    // some fields omitted
}

Fields

as_bool: boolas_int32: i32as_uint32: u32as_int64: i64as_uint64: u64as_double: f64as_string: _Dart_NativeArgument_Value__bindgen_ty_1as_native_fields: _Dart_NativeArgument_Value__bindgen_ty_2as_instance: Dart_Handle

Trait Implementations

impl Clone for _Dart_NativeArgument_Value[src]

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