pub trait Identifiable {
    const CONSTRUCTOR_ID: u32;
}
Expand description

Anything implementing this trait is identifiable by both ends (client-server) when performing Remote Procedure Calls (RPC) and transmission of objects.

Associated Constants

The unique identifier for the type.

Implementors