Skip to content

use buffered processing #329

use buffered processing

use buffered processing #329

GitHub Actions / wasm32 - with all features succeeded Dec 15, 2024 in 0s

wasm32 - with all features

2 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 2
Note 0
Help 0

Versions

  • rustc 1.83.0 (90b35a623 2024-11-26)
  • cargo 1.83.0 (5ffbef321 2024-10-29)
  • clippy 0.1.83 (90b35a6 2024-11-26)

Annotations

Check warning on line 74 in crates/kira/src/sound.rs

See this annotation in the file changed.

@github-actions github-actions / wasm32 - with all features

missing documentation for a method

warning: missing documentation for a method
   --> crates/kira/src/sound.rs:74:2
    |
74  |     fn process_one(&mut self, dt: f64, info: &Info) -> Frame {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
note: the lint level is defined here
   --> crates/kira/src/lib.rs:245:9
    |
245 | #![warn(missing_docs)]
    |         ^^^^^^^^^^^^

Check warning on line 139 in crates/kira/src/track/sub.rs

See this annotation in the file changed.

@github-actions github-actions / wasm32 - with all features

this function has too many arguments (8/7)

warning: this function has too many arguments (8/7)
   --> crates/kira/src/track/sub.rs:130:2
    |
130 | /     pub fn process(
131 | |         &mut self,
132 | |         out: &mut [Frame],
133 | |         dt: f64,
...   |
138 | |         send_tracks: &mut ResourceStorage<SendTrack>,
139 | |     ) {
    | |_____^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
    = note: `#[warn(clippy::too_many_arguments)]` on by default