#[repr(C)]pub enum FfiMessage {
InputChanged,
TextChanged(String),
Submit,
}Expand description
Messages that can be sent from the host to the plugin
Variants§
Trait Implementations§
Source§impl Clone for FfiMessage
impl Clone for FfiMessage
Source§fn clone(&self) -> FfiMessage
fn clone(&self) -> FfiMessage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FfiMessage
impl RefUnwindSafe for FfiMessage
impl Send for FfiMessage
impl Sync for FfiMessage
impl Unpin for FfiMessage
impl UnwindSafe for FfiMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more