You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0308]: mismatched types --> src/closures/response_channel.rs:86:50 |86 | handler.as_rust_type_mut_uninit().write(Some(h)); | ---- ^ expected `Receiver<Reply>`, found `FifoChannelHandler<_>` | | | arguments to this enum variant are incorrect | = note: expected struct `flume::Receiver<Reply>` found struct `FifoChannelHandler<_>`help: the type constructed contains `FifoChannelHandler<_>` due to the type of the argument passed --> src/closures/response_channel.rs:86:45 |86 | handler.as_rust_type_mut_uninit().write(Some(h)); | ^^^^^-^ | | | this argument influences the type of `Some`note: tuple variant defined here --> /rustc/82e1608dfa6e0b5569232559e3d385fea5a93112/library/core/src/option.rs:577:5error[E0308]: mismatched types --> src/closures/query_channel.rs:86:50 |86 | handler.as_rust_type_mut_uninit().write(Some(h)); | ---- ^ expected `Receiver<Query>`, found `FifoChannelHandler<_>` | | | arguments to this enum variant are incorrect | = note: expected struct `flume::Receiver<Query>` found struct `FifoChannelHandler<_>`help: the type constructed contains `FifoChannelHandler<_>` due to the type of the argument passed --> src/closures/query_channel.rs:86:45 |86 | handler.as_rust_type_mut_uninit().write(Some(h)); | ^^^^^-^ | | | this argument influences the type of `Some`note: tuple variant defined here --> /rustc/82e1608dfa6e0b5569232559e3d385fea5a93112/library/core/src/option.rs:577:5error[E0308]: mismatched types --> src/closures/sample_channel.rs:86:50 |86 | handler.as_rust_type_mut_uninit().write(Some(h)); | ---- ^ expected `Receiver<Sample>`, found `FifoChannelHandler<_>` | | | arguments to this enum variant are incorrect | = note: expected struct `flume::Receiver<Sample>` found struct `FifoChannelHandler<_>`help: the type constructed contains `FifoChannelHandler<_>` due to the type of the argument passed --> src/closures/sample_channel.rs:86:45 |86 | handler.as_rust_type_mut_uninit().write(Some(h)); | ^^^^^-^ | | | this argument influences the type of `Some`note: tuple variant defined here --> /rustc/82e1608dfa6e0b5569232559e3d385fea5a93112/library/core/src/option.rs:577:5For more information about this error, try `rustc --explain E0308`.error: could not compile `zenoh-c` (lib) due to 3 previous errors
Describe the bug
We need to align with the recent change on the flume eclipse-zenoh/zenoh@3740564
To reproduce
cargo check
System info
The text was updated successfully, but these errors were encountered: