pub const PLUGIN_API_ID: u16 = 1u16;Expand description
Wire-level API identifier for the Plugin service.
Default value is a 16-bit FNV-1a hash of the trait name. Since the API id space is only 2^16 wide, collisions are possible across unrelated services. For production deployments, override explicitly:
ⓘ
#[myelin::service(api_id = 0x0001)]
pub trait PluginService { /* ... */ }