songbird 0.6.0

An async Rust library for the Discord voice API.
1
2
3
4
5
6
7
8
9
#![allow(missing_docs)]

use crate::{driver::tasks::mixer::InternalTrack, tracks::TrackHandle};

#[allow(dead_code)] // We don't read because all we are doing is dropping.
pub enum DisposalMessage {
    Track(Box<InternalTrack>),
    Handle(TrackHandle),
}