Mark the return value of TreeCursor::field_name static

This commit is contained in:
Tuấn-Anh Nguyễn 2020-02-27 22:36:13 +07:00
parent a578ba54c4
commit 5f68fba61c

View file

@ -1059,7 +1059,7 @@ impl<'a> TreeCursor<'a> {
}
/// Get the field name of this tree cursor's current node.
pub fn field_name(&self) -> Option<&str> {
pub fn field_name(&self) -> Option<&'static str> {
unsafe {
let ptr = ffi::ts_tree_cursor_current_field_name(&self.0);
if ptr.is_null() {