Get the name of this file
(&self)
| 53 | |
| 54 | /// Get the name of this file |
| 55 | pub fn name(&self) -> BnString { |
| 56 | unsafe { BnString::from_raw(BNProjectFileGetName(self.handle.as_ptr())) } |
| 57 | } |
| 58 | |
| 59 | /// Set the name of this file |
| 60 | pub fn set_name<S: BnStrCompatible>(&self, value: S) -> bool { |