makepad-stitch 0.1.0

An experimental Wasm interpreter written in Rust that is designed to be very fast and lightweight.
Documentation
1
2
3
4
5
6
7
pub(crate) trait DowncastRef<T> {
    fn downcast_ref(from: &T) -> Option<&Self>;
}

pub(crate) trait DowncastMut<T> {
    fn downcast_mut(from: &mut T) -> Option<&mut Self>;
}