diff options
| author | Fuwn <[email protected]> | 2021-05-28 00:06:40 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-28 00:06:40 +0000 |
| commit | d87b4825480f938cfa552421e220d8f85a1bee10 (patch) | |
| tree | d9c69c0dc4f5a9e876460d10e101d936f424bee5 /crates/whirl_server/src/cmd/commands/property | |
| parent | Merge branch 'develop' of https://github.com/Whirlsplash/whirl into develop (diff) | |
| download | whirl-d87b4825480f938cfa552421e220d8f85a1bee10.tar.xz whirl-d87b4825480f938cfa552421e220d8f85a1bee10.zip | |
fix(global): a lot of clippy warnings
This change makes clippy **a lot** more strict.
Diffstat (limited to 'crates/whirl_server/src/cmd/commands/property')
| -rw-r--r-- | crates/whirl_server/src/cmd/commands/property/create.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/whirl_server/src/cmd/commands/property/create.rs b/crates/whirl_server/src/cmd/commands/property/create.rs index 40ec2be..94cf75b 100644 --- a/crates/whirl_server/src/cmd/commands/property/create.rs +++ b/crates/whirl_server/src/cmd/commands/property/create.rs @@ -27,7 +27,7 @@ use crate::{ }, }; -pub fn create_property_update_as_distributor() -> Vec<u8> { +pub fn property_update_as_distributor() -> Vec<u8> { property_list_to_bytes( PROPUPD, 0xFF, @@ -64,7 +64,7 @@ pub fn create_property_update_as_distributor() -> Vec<u8> { ) } -pub fn create_property_update_as_hub() -> Vec<u8> { +pub fn property_update_as_hub() -> Vec<u8> { property_list_to_bytes( PROPUPD, 0xFF, @@ -105,7 +105,7 @@ pub fn create_property_update_as_hub() -> Vec<u8> { ) } -pub fn create_property_request_as_distributor() -> Vec<u8> { +pub fn property_request_as_distributor() -> Vec<u8> { property_list_to_bytes( SESSINIT as i32, 0x01, @@ -142,7 +142,7 @@ pub fn create_property_request_as_distributor() -> Vec<u8> { ) } -pub fn create_property_request_as_hub() -> Vec<u8> { +pub fn property_request_as_hub() -> Vec<u8> { property_list_to_bytes( SESSINIT as i32, 0x01, |