summaryrefslogtreecommitdiff
path: root/rust/src/background_task.rs
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-05-05 13:17:30 -0400
committerMason Reed <35282038+emesare@users.noreply.github.com>2025-05-12 17:45:24 -0400
commit9dadf92c16da5cd21def79ae39ca98803c9208ec (patch)
tree3874a659bcb3818f43c1a46ab3ef081b99b47154 /rust/src/background_task.rs
parent9f5491a56f6af1fa9b030f23d40150673a52aaa1 (diff)
[Rust] Rename `AsCStr` to `IntoCStr`
Diffstat (limited to 'rust/src/background_task.rs')
-rw-r--r--rust/src/background_task.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/src/background_task.rs b/rust/src/background_task.rs
index 95bdda0b..b0537fa8 100644
--- a/rust/src/background_task.rs
+++ b/rust/src/background_task.rs
@@ -43,7 +43,7 @@ impl BackgroundTask {
Self { handle }
}
- pub fn new<S: AsCStr>(initial_text: S, can_cancel: bool) -> Ref<Self> {
+ pub fn new<S: IntoCStr>(initial_text: S, can_cancel: bool) -> Ref<Self> {
let text = initial_text.to_cstr();
let handle = unsafe { BNBeginBackgroundTask(text.as_ptr(), can_cancel) };
// We should always be returned a valid task.
@@ -75,7 +75,7 @@ impl BackgroundTask {
unsafe { BnString::into_string(BNGetBackgroundTaskProgressText(self.handle)) }
}
- pub fn set_progress_text<S: AsCStr>(&self, text: S) {
+ pub fn set_progress_text<S: IntoCStr>(&self, text: S) {
let progress_text = text.to_cstr();
unsafe { BNSetBackgroundTaskProgressText(self.handle, progress_text.as_ptr()) }
}