mirror of
https://github.com/RustAudio/rodio
synced 2025-03-04 23:17:22 +00:00
remove unneeded pub from OutputStreamConfig
This commit is contained in:
parent
c1d22302c7
commit
bc8d1c7e05
1 changed files with 4 additions and 4 deletions
|
@ -31,10 +31,10 @@ impl OutputStream {
|
||||||
|
|
||||||
#[derive(Copy, Clone, Debug)]
|
#[derive(Copy, Clone, Debug)]
|
||||||
struct OutputStreamConfig {
|
struct OutputStreamConfig {
|
||||||
pub channel_count: ChannelCount,
|
channel_count: ChannelCount,
|
||||||
pub sample_rate: SampleRate,
|
sample_rate: SampleRate,
|
||||||
pub buffer_size: BufferSize,
|
buffer_size: BufferSize,
|
||||||
pub sample_format: SampleFormat,
|
sample_format: SampleFormat,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Convenience builder for audio output stream.
|
/// Convenience builder for audio output stream.
|
||||||
|
|
Loading…
Add table
Reference in a new issue