rawdio 0.14.0

An Audio Engine, inspired by the Web Audio API
Documentation
1
2
3
4
5
6
7
use crate::commands::Command;

/// Something that can process commands
pub trait CommandQueue {
    /// Send a command
    fn send(&self, command: Command);
}