#[repr(C)]pub struct FlipperAppPluginDescriptor {
pub appid: *const c_char,
pub ep_api_version: u32,
pub entry_point: *const c_void,
}Expand description
An object that describes a plugin - must be returned by plugin’s entry point
Fields§
§appid: *const c_char§ep_api_version: u32§entry_point: *const c_voidTrait Implementations§
Source§impl Clone for FlipperAppPluginDescriptor
impl Clone for FlipperAppPluginDescriptor
Source§fn clone(&self) -> FlipperAppPluginDescriptor
fn clone(&self) -> FlipperAppPluginDescriptor
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 moreSource§impl Debug for FlipperAppPluginDescriptor
impl Debug for FlipperAppPluginDescriptor
impl Copy for FlipperAppPluginDescriptor
Auto Trait Implementations§
impl Freeze for FlipperAppPluginDescriptor
impl RefUnwindSafe for FlipperAppPluginDescriptor
impl !Send for FlipperAppPluginDescriptor
impl !Sync for FlipperAppPluginDescriptor
impl Unpin for FlipperAppPluginDescriptor
impl UnwindSafe for FlipperAppPluginDescriptor
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