Get the name of the project
(&self)
| 95 | |
| 96 | /// Get the name of the project |
| 97 | pub fn name(&self) -> BnString { |
| 98 | unsafe { BnString::from_raw(BNProjectGetName(self.handle.as_ptr())) } |
| 99 | } |
| 100 | |
| 101 | /// Set the name of the project |
| 102 | pub fn set_name<S: BnStrCompatible>(&self, value: S) { |