summaryrefslogtreecommitdiff
path: root/rust/src/background_task.rs
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-05-04 19:10:56 -0400
committerMason Reed <35282038+emesare@users.noreply.github.com>2025-05-12 17:45:24 -0400
commita826c589dfc10c542deba7ca3343a462e02d6bde (patch)
treef116254bef39f787268bbecc5eac19da310db9ce /rust/src/background_task.rs
parent28b3c4044af06fdc32c9c85bf8381b5058306427 (diff)
[Rust] Simplify `BnStrCompatible` trait
Followup to https://github.com/Vector35/binaryninja-api/pull/5897/ This simplifies usage of the trait in user code, should just be able to `to_cstr` to get the cstr repr and then call `as_ptr`. Co-authored-by: Michael Krasnitski <michael.krasnitski@gmail.com>
Diffstat (limited to 'rust/src/background_task.rs')
-rw-r--r--rust/src/background_task.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/rust/src/background_task.rs b/rust/src/background_task.rs
index 5d30f27d..c9059aca 100644
--- a/rust/src/background_task.rs
+++ b/rust/src/background_task.rs
@@ -43,8 +43,8 @@ impl BackgroundTask {
Self { handle }
}
- pub fn new<S: BnStrCompatible>(initial_text: S, can_cancel: bool) -> Ref<Self> {
- let text = initial_text.into_bytes_with_nul();
+ pub fn new<S: AsCStr>(initial_text: S, can_cancel: bool) -> Ref<Self> {
+ let text = initial_text.to_cstr();
let handle = unsafe { BNBeginBackgroundTask(text.as_ref().as_ptr() as *mut _, can_cancel) };
// We should always be returned a valid task.
assert!(!handle.is_null());
@@ -75,8 +75,8 @@ impl BackgroundTask {
unsafe { BnString::into_string(BNGetBackgroundTaskProgressText(self.handle)) }
}
- pub fn set_progress_text<S: BnStrCompatible>(&self, text: S) {
- let progress_text = text.into_bytes_with_nul();
+ pub fn set_progress_text<S: AsCStr>(&self, text: S) {
+ let progress_text = text.to_cstr();
unsafe {
BNSetBackgroundTaskProgressText(self.handle, progress_text.as_ref().as_ptr() as *mut _)
}