[][src]Struct flutter_engine::ffi::FlutterProjectArgs

#[repr(C)]
pub struct FlutterProjectArgs { pub struct_size: size_t, pub assets_path: *mut c_char, pub main_path: *mut c_char, pub packages_path: *mut c_char, pub icu_data_path: *mut c_char, pub command_line_argc: c_int, pub command_line_argv: *mut *mut c_char, pub platform_message_callback: FlutterPlatformMessageCallback, pub vm_snapshot_data: *const u8, pub vm_snapshot_data_size: size_t, pub vm_snapshot_instructions: *const u8, pub vm_snapshot_instructions_size: size_t, pub isolate_snapshot_data: *const u8, pub isolate_snapshot_data_size: size_t, pub isolate_snapshot_instructions: *const u8, pub isolate_snapshot_instructions_size: size_t, pub root_isolate_create_callback: VoidCallback, }

Fields

struct_size: size_tassets_path: *mut c_charmain_path: *mut c_charpackages_path: *mut c_charicu_data_path: *mut c_charcommand_line_argc: c_intcommand_line_argv: *mut *mut c_charplatform_message_callback: FlutterPlatformMessageCallbackvm_snapshot_data: *const u8vm_snapshot_data_size: size_tvm_snapshot_instructions: *const u8vm_snapshot_instructions_size: size_tisolate_snapshot_data: *const u8isolate_snapshot_data_size: size_tisolate_snapshot_instructions: *const u8isolate_snapshot_instructions_size: size_troot_isolate_create_callback: VoidCallback

Trait Implementations

impl Drop for FlutterProjectArgs[src]

impl Debug for FlutterProjectArgs[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Erased for T