Skip to content

Commit 6eaf204

Browse files
committed
Apply cargo +nightly fmt
1 parent 10c1d6f commit 6eaf204

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/survey/get.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ pub struct Nl80211SurveyGetRequest {
1515
}
1616

1717
impl Nl80211SurveyGetRequest {
18-
pub(crate) fn new(handle: Nl80211Handle, attributes: Vec<Nl80211Attr>) -> Self {
18+
pub(crate) fn new(
19+
handle: Nl80211Handle,
20+
attributes: Vec<Nl80211Attr>,
21+
) -> Self {
1922
Self { handle, attributes }
2023
}
2124

src/survey/handle.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ impl Nl80211Survey {
1919
}
2020

2121
impl Nl80211AttrsBuilder<Nl80211Survey> {
22-
/// Request overall radio statistics to be returned along with other survey data
22+
/// Request overall radio statistics to be returned along with other survey
23+
/// data
2324
pub fn radio(self, value: bool) -> Self {
2425
if value {
2526
self.replace(Nl80211Attr::SurveyRadioStats)

0 commit comments

Comments
 (0)