Repo of no-std crates for my personal embedded projects
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix comment

+2 -2
+2 -2
sachy-crypto/src/lib.rs
··· 42 42 /// and then whether sending/receiving during communication. 43 43 #[derive(Debug, PartialEq, Eq, Clone, Copy)] 44 44 pub enum Role { 45 - /// Client SENDS data 45 + /// Participant SENDS data 46 46 Sender, 47 - /// Server RECEIVES data 47 + /// Participant RECEIVES data 48 48 Receiver, 49 49 } 50 50