osiris_typed/
types.rs

1use osiris_data::data::composite::Array;
2
3pub trait DataType {
4    fn typename(&self) -> String;
5    fn size(&self) -> usize;
6    fn to_array(&self) -> Array;
7}
8
9
10pub mod numeral;
11pub mod pointers;
12pub mod value;