diff options
| author | Mason Reed <mason@vector35.com> | 2025-05-04 20:43:32 -0400 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2025-05-12 17:45:24 -0400 |
| commit | f32f083c81a5034530ac33ad2bc460dd234186a5 (patch) | |
| tree | 02e5799b595322b3a6967977ac69257eb023e882 /rust/src/websocket | |
| parent | e12dac56c123bcf39708cb381497753250eb1887 (diff) | |
[Rust] More cleanup regarding `BnString`
- Removed `to_string` shortcut from `BnString`.
- Misc formatting
Diffstat (limited to 'rust/src/websocket')
| -rw-r--r-- | rust/src/websocket/client.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/rust/src/websocket/client.rs b/rust/src/websocket/client.rs index e9e753b1..8e2c6db0 100644 --- a/rust/src/websocket/client.rs +++ b/rust/src/websocket/client.rs @@ -124,9 +124,7 @@ impl CoreWebsocketClient { /// Call the error callback function pub fn notify_error(&self, msg: &str) { let error = msg.to_cstr(); - unsafe { - BNNotifyWebsocketClientError(self.handle.as_ptr(), error.as_ptr()) - } + unsafe { BNNotifyWebsocketClientError(self.handle.as_ptr(), error.as_ptr()) } } /// Call the read callback function, forward the callback returned value |
