resonator 0.3.2

This crate allows 2 devices to send live PCM audio data to each other through a server
Documentation
1
2
3
4
5
6
7
pub trait Parsable<T> {
    /**

     * Parses a new AudioSample using the provided byte data
     * Will ignore any bytes after the ones needed (4)
     */
    fn from_bytes(bytes: &[u8]) -> T;
}