[][src]Union dart_sys::Dart_NativeArgument_Value

#[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_NativeString,
    pub as_native_fields: Dart_NativeFields,
    pub as_instance: Dart_Handle,
    // some fields omitted
}

Fields

as_bool: boolas_int32: i32as_uint32: u32as_int64: i64as_uint64: u64as_double: f64as_string: Dart_NativeStringas_native_fields: Dart_NativeFieldsas_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> 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.