diff options
author | Arthur Marble <arthur@info9.net> | 2016-09-17 20:24:33 -0500 |
---|---|---|
committer | Arthur Marble <arthur@info9.net> | 2016-09-17 20:31:46 -0500 |
commit | 55ff161ed5e57322dcd4ed984c13f3ae3512a01a (patch) | |
tree | 544c688f47baa126a374c8d2f18bab43d354c172 /components/script/dom/bluetoothcharacteristicproperties.rs | |
parent | dd4907c985a3f38d5e8e5808cbbbef60cbb47620 (diff) | |
download | servo-55ff161ed5e57322dcd4ed984c13f3ae3512a01a.tar.gz servo-55ff161ed5e57322dcd4ed984c13f3ae3512a01a.zip |
Refactored a couple of files from codeStyle to code_style.
Diffstat (limited to 'components/script/dom/bluetoothcharacteristicproperties.rs')
-rw-r--r-- | components/script/dom/bluetoothcharacteristicproperties.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/dom/bluetoothcharacteristicproperties.rs b/components/script/dom/bluetoothcharacteristicproperties.rs index 9abb5e5cd5b..6a0fb26c0b3 100644 --- a/components/script/dom/bluetoothcharacteristicproperties.rs +++ b/components/script/dom/bluetoothcharacteristicproperties.rs @@ -15,7 +15,7 @@ pub struct BluetoothCharacteristicProperties { reflector_: Reflector, broadcast: bool, read: bool, - writeWithoutResponse: bool, + write_without_response: bool, write: bool, notify: bool, indicate: bool, @@ -27,7 +27,7 @@ pub struct BluetoothCharacteristicProperties { impl BluetoothCharacteristicProperties { pub fn new_inherited(broadcast: bool, read: bool, - writeWithoutResponse: bool, + write_without_response: bool, write: bool, notify: bool, indicate: bool, @@ -39,7 +39,7 @@ impl BluetoothCharacteristicProperties { reflector_: Reflector::new(), broadcast: broadcast, read: read, - writeWithoutResponse: writeWithoutResponse, + write_without_response: write_without_response, write: write, notify: notify, indicate: indicate, @@ -87,7 +87,7 @@ impl BluetoothCharacteristicPropertiesMethods for BluetoothCharacteristicPropert // https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothcharacteristicproperties-writewithoutresponse fn WriteWithoutResponse(&self) -> bool { - self.writeWithoutResponse + self.write_without_response } // https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothcharacteristicproperties-write |