pub trait KindValidator {
// Required methods
fn can_instantiate(&self) -> bool;
fn can_generate_side_effects(&self) -> bool;
fn can_remunerate(&self) -> bool;
fn has_storage(&self) -> bool;
}
pub trait KindValidator {
// Required methods
fn can_instantiate(&self) -> bool;
fn can_generate_side_effects(&self) -> bool;
fn can_remunerate(&self) -> bool;
fn has_storage(&self) -> bool;
}