(&self)
| 72 | } |
| 73 | |
| 74 | pub fn progress_text(&self) -> BnString { |
| 75 | unsafe { BnString::from_raw(BNGetBackgroundTaskProgressText(self.handle)) } |
| 76 | } |
| 77 | |
| 78 | pub fn set_progress_text<S: BnStrCompatible>(&self, text: S) { |
| 79 | let progress_text = text.into_bytes_with_nul(); |
no outgoing calls