#[repr(C)]
pub struct PluginInfo { pub supported_api: APIVersion, pub create_account: Option<extern "C" fn() -> Account>, pub destroy_account: Option<extern "C" fn(acc: Account)>, pub print: Option<extern "C" fn(acc: Account)>, }

Fields

supported_api: APIVersioncreate_account: Option<extern "C" fn() -> Account>destroy_account: Option<extern "C" fn(acc: Account)>print: Option<extern "C" fn(acc: Account)>

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.