chore: AsRef is part of Rust's prelude

This commit is contained in:
Paolo Barbolini
2020-09-09 11:43:05 +02:00
committed by Alexis Mousset
parent e5460c4ba1
commit ec7d63c8de
2 changed files with 1 additions and 5 deletions

View File

@@ -69,7 +69,6 @@ use crate::{Envelope, Transport};
#[cfg(any(feature = "async-std1", feature = "tokio02"))]
use async_trait::async_trait;
use std::{
convert::AsRef,
ffi::OsString,
io::prelude::*,
process::{Command, Stdio},

View File

@@ -9,10 +9,7 @@ use crate::{
},
Address,
};
use std::{
convert::AsRef,
fmt::{self, Display, Formatter},
};
use std::fmt::{self, Display, Formatter};
/// EHLO command
#[derive(PartialEq, Clone, Debug)]