Procházet zdrojové kódy

Derive debug for Message struct

Thomas Dy před 9 roky
rodič
revize
46cfb5ca7f
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  1. 1 0
      src/comm.rs

+ 1 - 0
src/comm.rs

@@ -2,6 +2,7 @@ use std::sync::mpsc::{Sender};
 
 pub type Channel = Sender<Message>;
 
+#[derive(Debug)]
 pub struct Message {
     pub kind: String,
     pub text: String