No working if only sink is kept after constructing
chanmaoganda opened this issue · 2 comments
chanmaoganda commented
pub fn new() -> Self {
let (_stream, stream_handle) = OutputStream::try_default().unwrap();
let sink = Sink::try_new(&stream_handle).unwrap();
Self {sink}
}
If i try to use the struct only keeping sink
, it is unable to play any music
chanmaoganda commented
Perhaps it is better to mention that?