Skip to content

Commit ce3851d

Browse files
Fmt Botgithub-actions[bot]
Fmt Bot
authored andcommitted
2024-08-18 automated rustfmt nightly
1 parent c00faa0 commit ce3851d

File tree

3 files changed

+35
-96
lines changed

3 files changed

+35
-96
lines changed

io/src/bridge.rs

+26-78
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,15 @@ impl<T> FromStd<T> {
1212

1313
/// Returns the wrapped value.
1414
#[inline]
15-
pub fn into_inner(self) -> T {
16-
self.0
17-
}
15+
pub fn into_inner(self) -> T { self.0 }
1816

1917
/// Returns a reference to the wrapped value.
2018
#[inline]
21-
pub fn inner(&self) -> &T {
22-
&self.0
23-
}
19+
pub fn inner(&self) -> &T { &self.0 }
2420

2521
/// Returns a mutable reference to the wrapped value.
2622
#[inline]
27-
pub fn inner_mut(&mut self) -> &mut T {
28-
&mut self.0
29-
}
23+
pub fn inner_mut(&mut self) -> &mut T { &mut self.0 }
3024

3125
/// Wraps a mutable reference to IO type.
3226
#[inline]
@@ -58,14 +52,10 @@ impl<T: std::io::Read> super::Read for FromStd<T> {
5852

5953
impl<T: std::io::BufRead> super::BufRead for FromStd<T> {
6054
#[inline]
61-
fn fill_buf(&mut self) -> super::Result<&[u8]> {
62-
self.0.fill_buf().map_err(Into::into)
63-
}
55+
fn fill_buf(&mut self) -> super::Result<&[u8]> { self.0.fill_buf().map_err(Into::into) }
6456

6557
#[inline]
66-
fn consume(&mut self, amount: usize) {
67-
self.0.consume(amount)
68-
}
58+
fn consume(&mut self, amount: usize) { self.0.consume(amount) }
6959
}
7060

7161
impl<T: std::io::Write> super::Write for FromStd<T> {
@@ -75,9 +65,7 @@ impl<T: std::io::Write> super::Write for FromStd<T> {
7565
}
7666

7767
#[inline]
78-
fn flush(&mut self) -> super::Result<()> {
79-
self.0.flush().map_err(Into::into)
80-
}
68+
fn flush(&mut self) -> super::Result<()> { self.0.flush().map_err(Into::into) }
8169

8270
#[inline]
8371
fn write_all(&mut self, buf: &[u8]) -> super::Result<()> {
@@ -89,43 +77,29 @@ impl<T: std::io::Write> super::Write for FromStd<T> {
8977

9078
impl<T: std::io::Read> std::io::Read for FromStd<T> {
9179
#[inline]
92-
fn read(&mut self, buf: &mut [u8]) -> std::io::Result<usize> {
93-
self.0.read(buf)
94-
}
80+
fn read(&mut self, buf: &mut [u8]) -> std::io::Result<usize> { self.0.read(buf) }
9581

9682
#[inline]
97-
fn read_exact(&mut self, buf: &mut [u8]) -> std::io::Result<()> {
98-
self.0.read_exact(buf)
99-
}
83+
fn read_exact(&mut self, buf: &mut [u8]) -> std::io::Result<()> { self.0.read_exact(buf) }
10084
}
10185

10286
impl<T: std::io::BufRead> std::io::BufRead for FromStd<T> {
10387
#[inline]
104-
fn fill_buf(&mut self) -> std::io::Result<&[u8]> {
105-
self.0.fill_buf()
106-
}
88+
fn fill_buf(&mut self) -> std::io::Result<&[u8]> { self.0.fill_buf() }
10789

10890
#[inline]
109-
fn consume(&mut self, amount: usize) {
110-
self.0.consume(amount)
111-
}
91+
fn consume(&mut self, amount: usize) { self.0.consume(amount) }
11292
}
11393

11494
impl<T: std::io::Write> std::io::Write for FromStd<T> {
11595
#[inline]
116-
fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> {
117-
self.0.write(buf)
118-
}
96+
fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> { self.0.write(buf) }
11997

12098
#[inline]
121-
fn flush(&mut self) -> std::io::Result<()> {
122-
self.0.flush()
123-
}
99+
fn flush(&mut self) -> std::io::Result<()> { self.0.flush() }
124100

125101
#[inline]
126-
fn write_all(&mut self, buf: &[u8]) -> std::io::Result<()> {
127-
self.0.write_all(buf)
128-
}
102+
fn write_all(&mut self, buf: &[u8]) -> std::io::Result<()> { self.0.write_all(buf) }
129103
}
130104

131105
/// A bridging wrapper providing the std traits for types that already implement our traits.
@@ -139,21 +113,15 @@ impl<T> ToStd<T> {
139113

140114
/// Returns the wrapped value.
141115
#[inline]
142-
pub fn into_inner(self) -> T {
143-
self.0
144-
}
116+
pub fn into_inner(self) -> T { self.0 }
145117

146118
/// Returns a reference to the wrapped value.
147119
#[inline]
148-
pub fn inner(&self) -> &T {
149-
&self.0
150-
}
120+
pub fn inner(&self) -> &T { &self.0 }
151121

152122
/// Returns a mutable reference to the wrapped value.
153123
#[inline]
154-
pub fn inner_mut(&mut self) -> &mut T {
155-
&mut self.0
156-
}
124+
pub fn inner_mut(&mut self) -> &mut T { &mut self.0 }
157125

158126
/// Wraps a mutable reference to IO type.
159127
#[inline]
@@ -185,14 +153,10 @@ impl<T: super::Read> std::io::Read for ToStd<T> {
185153

186154
impl<T: super::BufRead> std::io::BufRead for ToStd<T> {
187155
#[inline]
188-
fn fill_buf(&mut self) -> std::io::Result<&[u8]> {
189-
self.0.fill_buf().map_err(Into::into)
190-
}
156+
fn fill_buf(&mut self) -> std::io::Result<&[u8]> { self.0.fill_buf().map_err(Into::into) }
191157

192158
#[inline]
193-
fn consume(&mut self, amount: usize) {
194-
self.0.consume(amount)
195-
}
159+
fn consume(&mut self, amount: usize) { self.0.consume(amount) }
196160
}
197161

198162
impl<T: super::Write> std::io::Write for ToStd<T> {
@@ -202,9 +166,7 @@ impl<T: super::Write> std::io::Write for ToStd<T> {
202166
}
203167

204168
#[inline]
205-
fn flush(&mut self) -> std::io::Result<()> {
206-
self.0.flush().map_err(Into::into)
207-
}
169+
fn flush(&mut self) -> std::io::Result<()> { self.0.flush().map_err(Into::into) }
208170

209171
#[inline]
210172
fn write_all(&mut self, buf: &[u8]) -> std::io::Result<()> {
@@ -216,43 +178,29 @@ impl<T: super::Write> std::io::Write for ToStd<T> {
216178

217179
impl<T: super::Read> super::Read for ToStd<T> {
218180
#[inline]
219-
fn read(&mut self, buf: &mut [u8]) -> super::Result<usize> {
220-
self.0.read(buf)
221-
}
181+
fn read(&mut self, buf: &mut [u8]) -> super::Result<usize> { self.0.read(buf) }
222182

223183
#[inline]
224-
fn read_exact(&mut self, buf: &mut [u8]) -> super::Result<()> {
225-
self.0.read_exact(buf)
226-
}
184+
fn read_exact(&mut self, buf: &mut [u8]) -> super::Result<()> { self.0.read_exact(buf) }
227185
}
228186

229187
impl<T: super::BufRead> super::BufRead for ToStd<T> {
230188
#[inline]
231-
fn fill_buf(&mut self) -> super::Result<&[u8]> {
232-
self.0.fill_buf()
233-
}
189+
fn fill_buf(&mut self) -> super::Result<&[u8]> { self.0.fill_buf() }
234190

235191
#[inline]
236-
fn consume(&mut self, amount: usize) {
237-
self.0.consume(amount)
238-
}
192+
fn consume(&mut self, amount: usize) { self.0.consume(amount) }
239193
}
240194

241195
impl<T: super::Write> super::Write for ToStd<T> {
242196
#[inline]
243-
fn write(&mut self, buf: &[u8]) -> super::Result<usize> {
244-
self.0.write(buf)
245-
}
197+
fn write(&mut self, buf: &[u8]) -> super::Result<usize> { self.0.write(buf) }
246198

247199
#[inline]
248-
fn flush(&mut self) -> super::Result<()> {
249-
self.0.flush()
250-
}
200+
fn flush(&mut self) -> super::Result<()> { self.0.flush() }
251201

252202
#[inline]
253-
fn write_all(&mut self, buf: &[u8]) -> super::Result<()> {
254-
self.0.write_all(buf)
255-
}
203+
fn write_all(&mut self, buf: &[u8]) -> super::Result<()> { self.0.write_all(buf) }
256204
}
257205

258206
macro_rules! impl_our {

io/src/lib.rs

+8-14
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@
2121
#[cfg(feature = "alloc")]
2222
extern crate alloc;
2323

24-
mod error;
25-
mod macros;
2624
#[cfg(feature = "std")]
2725
mod bridge;
28-
29-
#[cfg(feature = "std")]
30-
pub use bridge::{FromStd, ToStd};
26+
mod error;
27+
mod macros;
3128

3229
#[cfg(all(not(feature = "std"), feature = "alloc"))]
3330
use alloc::vec::Vec;
3431
use core::cmp;
3532

33+
#[cfg(feature = "std")]
34+
pub use bridge::{FromStd, ToStd};
35+
3636
#[rustfmt::skip] // Keep public re-exports separate.
3737
pub use self::error::{Error, ErrorKind};
3838

@@ -194,9 +194,7 @@ impl<T: AsRef<[u8]>> Cursor<T> {
194194
/// Note that setting a position that is larger than the buffer length will cause reads to
195195
/// return no bytes (EOF).
196196
#[inline]
197-
pub fn set_position(&mut self, position: u64) {
198-
self.pos = position;
199-
}
197+
pub fn set_position(&mut self, position: u64) { self.pos = position; }
200198

201199
/// Returns the inner buffer.
202200
///
@@ -311,18 +309,14 @@ pub fn sink() -> Sink { Sink }
311309
/// All methods are passed through converting the errors.
312310
#[cfg(feature = "std")]
313311
#[inline]
314-
pub const fn from_std<T>(std_io: T) -> FromStd<T> {
315-
FromStd::new(std_io)
316-
}
312+
pub const fn from_std<T>(std_io: T) -> FromStd<T> { FromStd::new(std_io) }
317313

318314
/// Wraps a mutable reference to `std` IO type to implement the traits from this crate.
319315
///
320316
/// All methods are passed through converting the errors.
321317
#[cfg(feature = "std")]
322318
#[inline]
323-
pub fn from_std_mut<T>(std_io: &mut T) -> &mut FromStd<T> {
324-
FromStd::new_mut(std_io)
325-
}
319+
pub fn from_std_mut<T>(std_io: &mut T) -> &mut FromStd<T> { FromStd::new_mut(std_io) }
326320

327321
#[cfg(test)]
328322
mod tests {

primitives/src/lib.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,7 @@ pub use units::*;
4141
#[cfg(feature = "alloc")]
4242
pub use self::locktime::{absolute, relative};
4343
#[doc(inline)]
44-
pub use self::{
45-
pow::CompactTarget,
46-
sequence::Sequence,
47-
};
44+
pub use self::{pow::CompactTarget, sequence::Sequence};
4845

4946
#[rustfmt::skip]
5047
#[allow(unused_imports)]

0 commit comments

Comments
 (0)