diff options
| author | Fuwn <[email protected]> | 2024-06-03 15:23:14 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-03 15:23:14 -0700 |
| commit | 19010055c88fd7aac23f3ce39fa6a5ec1cbf9a52 (patch) | |
| tree | 22353b8c7a78b83c992b7bfb60c024fee6f78e3e /crates/whirl_server/src/cmd/commands/session_exit.rs | |
| parent | chore(rustfmt): add new rules (diff) | |
| download | whirl-19010055c88fd7aac23f3ce39fa6a5ec1cbf9a52.tar.xz whirl-19010055c88fd7aac23f3ce39fa6a5ec1cbf9a52.zip | |
format: rustfmt with new rules
Diffstat (limited to 'crates/whirl_server/src/cmd/commands/session_exit.rs')
| -rw-r--r-- | crates/whirl_server/src/cmd/commands/session_exit.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/whirl_server/src/cmd/commands/session_exit.rs b/crates/whirl_server/src/cmd/commands/session_exit.rs index 47048ab..330f9bb 100644 --- a/crates/whirl_server/src/cmd/commands/session_exit.rs +++ b/crates/whirl_server/src/cmd/commands/session_exit.rs @@ -8,5 +8,7 @@ use crate::{ pub struct SessionExit(pub PropertyList); impl Creatable for SessionExit { - fn create(&self) -> Vec<u8> { self.0.clone().as_bytes(Command::SessExit as i32, 0x01) } + fn create(&self) -> Vec<u8> { + self.0.clone().as_bytes(Command::SessExit as i32, 0x01) + } } |