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
I can't build a ScanOptions struct because it requires the ScanType enum which is not exported by the library:
https://github.com/embassy-rs/embassy/blob/406d377b7564d16e12b7fae4f42c0c709bf4f243/cyw43/src/lib.rs pub use crate::control::{AddMulticastAddressError, Control, Error as ControlError, ScanOptions, Scanner};
pub use crate::control::{AddMulticastAddressError, Control, Error as ControlError, ScanOptions, Scanner};
it should be like this: pub use crate::control::{AddMulticastAddressError, Control, Error as ControlError, ScanOptions, Scanner, ScanType};
pub use crate::control::{AddMulticastAddressError, Control, Error as ControlError, ScanOptions, Scanner, ScanType};
The text was updated successfully, but these errors were encountered:
can you send a PR?
Sorry, something went wrong.
here it is: #3637
I'm a beginner in contributing to real projects, so I don't know if I did everything right
fixed in #3637
No branches or pull requests
I can't build a ScanOptions struct because it requires the ScanType enum which is not exported by the library:
https://github.com/embassy-rs/embassy/blob/406d377b7564d16e12b7fae4f42c0c709bf4f243/cyw43/src/lib.rs
pub use crate::control::{AddMulticastAddressError, Control, Error as ControlError, ScanOptions, Scanner};
it should be like this:
pub use crate::control::{AddMulticastAddressError, Control, Error as ControlError, ScanOptions, Scanner, ScanType};
The text was updated successfully, but these errors were encountered: