pub type TypeName = &'static str;
#[derive(Clone)]
pub struct Parameter {
pub name: String,
pub ty: TypeName,
}
#[derive(Clone)]
pub struct Method
{
pub method_pointer: *mut fn(),
pub name: &'static str,
pub parameters: Vec<Parameter>,
pub ret: Option<TypeName>,
pub is_static: bool,
}
#[derive(Clone)]
pub struct Field
{
pub field_offset: usize,
pub ty: TypeName,
pub name: &'static str,
}
#[derive(Clone)]
pub struct Class
{
pub name: String,
pub fields: Vec<Field>,
pub methods: Vec<Method>,
}
pub trait PluggableFields
{
fn pluggable_fields(&self) -> Vec<Field>;
}
pub trait PluggableMethods
{
fn pluggable_methods(&self) -> Vec<Method>;
}
pub trait Pluggable : PluggableFields + PluggableMethods
{
fn name(&self) -> &'static str;
fn fields(&self) -> Vec<Field> { PluggableFields::pluggable_fields(self) }
fn methods(&self) -> Vec<Method> { PluggableMethods::pluggable_methods(self) }
fn class(&self) -> Class {
Class {
name: self.name().to_owned(),
fields: self.fields(),
methods: self.methods(),
}
}
}