pub trait Class {
    type Parent: Sized + Class;

    const NAME: &'static str;

    fn id() -> usize;
    fn offset() -> isize;
    fn isa(id: usize) -> bool;
}
Expand description

Implemented by #[subclass] macro

Required Associated Types

Required Associated Constants

Required Methods

Implementors