[][src]Union dart_sys::Dart_CObjectValue

#[repr(C)]pub union Dart_CObjectValue {
    pub as_bool: bool,
    pub as_int32: i32,
    pub as_int64: i64,
    pub as_double: f64,
    pub as_string: *mut c_char,
    pub as_send_port: Dart_SendPort,
    pub as_capability: Dart_Capability,
    pub as_array: Dart_Array,
    pub as_typed_data: Dart_TypedData,
    pub as_external_typed_data: Dart_ExternalTypedData,
    // some fields omitted
}

Fields

as_bool: boolas_int32: i32as_int64: i64as_double: f64as_string: *mut c_charas_send_port: Dart_SendPortas_capability: Dart_Capabilityas_array: Dart_Arrayas_typed_data: Dart_TypedDataas_external_typed_data: Dart_ExternalTypedData

Trait Implementations

impl Clone for Dart_CObjectValue[src]

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