pub trait PropertyMapExt {
// Required methods
fn get_facing_or_north(&self) -> &str;
fn get_u8(&self, key: &str) -> Option<u8>;
fn is_true(&self, key: &str) -> bool;
}pub trait PropertyMapExt {
// Required methods
fn get_facing_or_north(&self) -> &str;
fn get_u8(&self, key: &str) -> Option<u8>;
fn is_true(&self, key: &str) -> bool;
}