diff -r c5a6e8566425 -r e935b1ad23f3 rust/hedgewars-server/src/core/client.rs --- a/rust/hedgewars-server/src/core/client.rs Tue May 28 19:04:18 2019 +0300 +++ b/rust/hedgewars-server/src/core/client.rs Tue May 28 21:28:32 2019 +0300 @@ -18,7 +18,7 @@ } } -pub struct HWClient { +pub struct HwClient { pub id: ClientId, pub room_id: Option, pub nick: String, @@ -29,9 +29,9 @@ pub clan: Option, } -impl HWClient { - pub fn new(id: ClientId, protocol_number: u16, nick: String) -> HWClient { - HWClient { +impl HwClient { + pub fn new(id: ClientId, protocol_number: u16, nick: String) -> HwClient { + HwClient { id, nick, protocol_number,