pub trait NewRef {
    fn new_ref(&self) -> Self;
}
Expand description

A trait for incrementing the reference count to a Godot object.

Required Methods

Creates a new reference to the underlying object.

Implementors