We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a908a7e commit 5a00469Copy full SHA for 5a00469
examples/set_buffer_size.rs
@@ -75,7 +75,10 @@ where
75
env_logger::init();
76
77
let full_backend_name = std::any::type_name::<D>();
78
- let backend_name = full_backend_name.split("::").last().unwrap_or(full_backend_name);
+ let backend_name = full_backend_name
79
+ .split("::")
80
+ .last()
81
+ .unwrap_or(full_backend_name);
82
println!("Using backend: {}", backend_name);
83
84
let device = driver
src/backends/pipewire/mod.rs
@@ -3,3 +3,5 @@ pub mod driver;
3
pub mod error;
4
pub mod stream;
5
mod utils;
6
+
7
+pub use driver::PipewireDriver;
0 commit comments