[][src]Struct flutter_engine::ffi::FlutterPlatformMessage

#[repr(C)]
pub struct FlutterPlatformMessage { pub struct_size: size_t, pub channel: *const c_char, pub message: *const uint8_t, pub message_size: size_t, pub response_handle: *const FlutterPlatformMessageResponseHandle, }

Fields

struct_size: size_tchannel: *const c_charmessage: *const uint8_tmessage_size: size_tresponse_handle: *const FlutterPlatformMessageResponseHandle

Methods

impl FlutterPlatformMessage[src]

pub fn drop(&mut self)[src]

This method is called manually. Message from C is managed by flutter. But message back to flutter is managed by me.

Trait Implementations

impl<'a, 'b, '_> Into<FlutterPlatformMessage> for &'_ PlatformMessage<'a, 'b>[src]

impl Debug for FlutterPlatformMessage[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