mirror of
https://github.com/MercuryWorkshop/epoxy-tls.git
synced 2025-05-12 14:00:01 -04:00
cargo fmt
This commit is contained in:
parent
c02a83f185
commit
1d86256733
5 changed files with 28 additions and 8 deletions
|
@ -10,7 +10,10 @@ use pty_process::{Pty, Size};
|
|||
use tokio::{io::copy, process::Child, select, sync::Mutex};
|
||||
use tokio_util::compat::{FuturesAsyncReadCompatExt, FuturesAsyncWriteCompatExt};
|
||||
use wisp_mux::{
|
||||
extensions::{AnyProtocolExtension, ProtocolExtension, ProtocolExtensionBuilder, AnyProtocolExtensionBuilder},
|
||||
extensions::{
|
||||
AnyProtocolExtension, AnyProtocolExtensionBuilder, ProtocolExtension,
|
||||
ProtocolExtensionBuilder,
|
||||
},
|
||||
ws::{LockedWebSocketWrite, WebSocketRead},
|
||||
MuxStreamAsyncRead, MuxStreamAsyncWrite, WispError,
|
||||
};
|
||||
|
|
|
@ -228,7 +228,7 @@ pub enum ServerRouteResult {
|
|||
|
||||
impl Display for ServerRouteResult {
|
||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||
match self {
|
||||
match self {
|
||||
Self::Wisp(_) => write!(f, "Wisp"),
|
||||
Self::WsProxy(_, path, udp) => write!(f, "WsProxy path {:?} udp {:?}", path, udp),
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue