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

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

Required Methods§

source

fn new_ref(&self) -> Self

Creates a new reference to the underlying object.

Implementors§