songbird 0.3.0

An async Rust library for the Discord voice API.
Documentation
#![allow(missing_docs)]

use crate::tracks::Track;

pub enum DisposalMessage {
    Track(Track),

    Poison,
}