aboutsummaryrefslogtreecommitdiff
path: root/crates/whirl_server/src/cmd/commands/session_exit.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-06-03 15:23:14 -0700
committerFuwn <[email protected]>2024-06-03 15:23:14 -0700
commit19010055c88fd7aac23f3ce39fa6a5ec1cbf9a52 (patch)
tree22353b8c7a78b83c992b7bfb60c024fee6f78e3e /crates/whirl_server/src/cmd/commands/session_exit.rs
parentchore(rustfmt): add new rules (diff)
downloadwhirl-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.rs4
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)
+ }
}