gdnative_core/object/
new_ref.rs

1/// A trait for incrementing the reference count to a Godot object.
2pub trait NewRef {
3    /// Creates a new reference to the underlying object.
4    fn new_ref(&self) -> Self;
5}