style(format): make rustfmt happy

This commit is contained in:
Aram Drevekenin 2020-11-26 10:52:43 +01:00
parent d4d54450a1
commit 356b9d602b

View file

@ -3,8 +3,8 @@ use ::std::collections::HashMap;
use ::std::io::{Read, Write}; use ::std::io::{Read, Write};
use ::std::os::unix::io::RawFd; use ::std::os::unix::io::RawFd;
use ::std::path::PathBuf; use ::std::path::PathBuf;
use ::std::sync::{Arc, Mutex};
use ::std::sync::atomic::{AtomicBool, Ordering}; use ::std::sync::atomic::{AtomicBool, Ordering};
use ::std::sync::{Arc, Mutex};
use ::std::time::{Duration, Instant}; use ::std::time::{Duration, Instant};
use crate::os_input_output::OsApi; use crate::os_input_output::OsApi;
@ -29,7 +29,11 @@ pub struct FakeStdinReader {
} }
impl FakeStdinReader { impl FakeStdinReader {
pub fn new(input_chars: Vec<[u8; 10]>, last_snapshot_time: Arc<Mutex<Instant>>, started_reading_from_pty: Arc<AtomicBool>) -> Self { pub fn new(
input_chars: Vec<[u8; 10]>,
last_snapshot_time: Arc<Mutex<Instant>>,
started_reading_from_pty: Arc<AtomicBool>,
) -> Self {
FakeStdinReader { FakeStdinReader {
input_chars, input_chars,
read_position: 0, read_position: 0,
@ -256,7 +260,11 @@ impl OsApi for FakeInputOutput {
input_chars.push(*bytes); input_chars.push(*bytes);
} }
} }
let reader = FakeStdinReader::new(input_chars, self.last_snapshot_time.clone(), self.started_reading_from_pty.clone()); let reader = FakeStdinReader::new(
input_chars,
self.last_snapshot_time.clone(),
self.started_reading_from_pty.clone(),
);
Box::new(reader) Box::new(reader)
} }
fn get_stdout_writer(&self) -> Box<dyn Write> { fn get_stdout_writer(&self) -> Box<dyn Write> {