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 10c1d6f commit 6eaf204Copy full SHA for 6eaf204
src/survey/get.rs
@@ -15,7 +15,10 @@ pub struct Nl80211SurveyGetRequest {
15
}
16
17
impl Nl80211SurveyGetRequest {
18
- pub(crate) fn new(handle: Nl80211Handle, attributes: Vec<Nl80211Attr>) -> Self {
+ pub(crate) fn new(
19
+ handle: Nl80211Handle,
20
+ attributes: Vec<Nl80211Attr>,
21
+ ) -> Self {
22
Self { handle, attributes }
23
24
src/survey/handle.rs
@@ -19,7 +19,8 @@ impl Nl80211Survey {
impl Nl80211AttrsBuilder<Nl80211Survey> {
- /// Request overall radio statistics to be returned along with other survey data
+ /// Request overall radio statistics to be returned along with other survey
+ /// data
pub fn radio(self, value: bool) -> Self {
25
if value {
26
self.replace(Nl80211Attr::SurveyRadioStats)
0 commit comments