melodium-common 0.10.1

Common Mélodium elements and traits
Documentation
1
2
3
4
5
6
7
use core::fmt::{Debug, Display};
use downcast_rs::{impl_downcast, DowncastSync};

pub trait Documented: DowncastSync + Display + Debug + Send + Sync {
    fn documentation(&self) -> &str;
}
impl_downcast!(sync Documented);