We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sensors::temperatures
If the sensors::temperatures function is spawned into a different thread, it fails with implementation of `std::ops::FnOnce` is not general enough.
implementation of `std::ops::FnOnce` is not general enough
MWE:
use futures::StreamExt; use heim::sensors; #[tokio::main] async fn main() { tokio::spawn(async { sensors::temperatures() .collect::<Vec<Result<sensors::TemperatureSensor, heim::Error>>>() .await }); }
The text was updated successfully, but these errors were encountered:
feat(dashboard): add cpu temp
0b82f47
NOT YET WORKING! See heim-rs/heim#354.
No branches or pull requests
If the
sensors::temperatures
function is spawned into a different thread, it fails withimplementation of `std::ops::FnOnce` is not general enough
.MWE:
The text was updated successfully, but these errors were encountered: