fret-runner-web 0.1.0

Web event loop runner for Fret on wasm32.
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct RunnerError;

impl std::fmt::Display for RunnerError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.write_str("fret-runner-web is only available on wasm32")
    }
}

impl std::error::Error for RunnerError {}