Skip to content

Commit

Permalink
repaired client_gui
Browse files Browse the repository at this point in the history
  • Loading branch information
booleancoercion committed Feb 10, 2024
1 parent 3b7e6e7 commit 2bfae51
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,12 @@ impl ReceiveMsg for ChatStream {
}
}

impl std::fmt::Debug for ChatStream {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "ChatStream")
}
}

pub struct ChatReaderHalf {
inner: OwnedReadHalf,
cipher: Option<Aes256Gcm>,
Expand Down

0 comments on commit 2bfae51

Please sign in to comment.