RefCounted

Struct RefCounted 

#[repr(C)]
pub struct RefCounted { /* private fields */ }
Expand description

Godot class RefCounted.

Inherits Object.

Related symbols:

See also Godot docs for RefCounted.

§Construction

This class is reference-counted. You can create a new instance using RefCounted::new_gd().

Implementations§

§

impl RefCounted

pub fn get_reference_count(&self) -> i32

Methods from Deref<Target = Object>§

pub fn get_script(&self) -> Option<Gd<Script>>

pub fn set_script(&mut self, script: impl AsArg<Option<Gd<Script>>>)

pub fn connect( &mut self, signal: impl AsArg<StringName>, callable: &Callable, ) -> Error

pub fn connect_flags( &mut self, signal: impl AsArg<StringName>, callable: &Callable, flags: ConnectFlags, ) -> Error

pub fn get_class(&self) -> GString

pub fn is_class(&self, class: impl AsArg<GString>) -> bool

pub fn set(&mut self, property: impl AsArg<StringName>, value: &Variant)

pub fn get(&self, property: impl AsArg<StringName>) -> Variant

pub fn set_indexed( &mut self, property_path: impl AsArg<NodePath>, value: &Variant, )

pub fn get_indexed(&self, property_path: impl AsArg<NodePath>) -> Variant

pub fn get_property_list(&self) -> Array<Dictionary>

pub fn get_method_list(&self) -> Array<Dictionary>

pub fn property_can_revert(&self, property: impl AsArg<StringName>) -> bool

pub fn property_get_revert(&self, property: impl AsArg<StringName>) -> Variant

pub fn set_meta(&mut self, name: impl AsArg<StringName>, value: &Variant)

pub fn remove_meta(&mut self, name: impl AsArg<StringName>)

pub fn get_meta(&self, name: impl AsArg<StringName>) -> Variant

To set the default parameters, use Self::get_meta_ex and its builder methods. See the book for detailed usage instructions.

pub fn get_meta_ex<'a>( &'a self, name: impl AsArg<StringName> + 'a, ) -> ExGetMeta<'a>

pub fn has_meta(&self, name: impl AsArg<StringName>) -> bool

pub fn get_meta_list(&self) -> Array<StringName>

pub fn add_user_signal(&mut self, signal: impl AsArg<GString>)

To set the default parameters, use Self::add_user_signal_ex and its builder methods. See the book for detailed usage instructions.

pub fn add_user_signal_ex<'a>( &'a mut self, signal: impl AsArg<GString> + 'a, ) -> ExAddUserSignal<'a>

pub fn has_user_signal(&self, signal: impl AsArg<StringName>) -> bool

pub fn remove_user_signal(&mut self, signal: impl AsArg<StringName>)

pub fn emit_signal( &mut self, signal: impl AsArg<StringName>, varargs: &[Variant], ) -> Error

§Panics

This is a varcall method, meaning parameters and return values are passed as Variant. It can detect call failures and will panic in such a case.

pub fn try_emit_signal( &mut self, signal: impl AsArg<StringName>, varargs: &[Variant], ) -> Result<Error, CallError>

§Return type

This is a varcall method, meaning parameters and return values are passed as Variant. It can detect call failures and will return Err in such a case.

pub fn call( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Variant

§Panics

This is a varcall method, meaning parameters and return values are passed as Variant. It can detect call failures and will panic in such a case.

pub fn try_call( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Result<Variant, CallError>

§Return type

This is a varcall method, meaning parameters and return values are passed as Variant. It can detect call failures and will return Err in such a case.

pub fn call_deferred( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Variant

§Panics

This is a varcall method, meaning parameters and return values are passed as Variant. It can detect call failures and will panic in such a case.

pub fn try_call_deferred( &mut self, method: impl AsArg<StringName>, varargs: &[Variant], ) -> Result<Variant, CallError>

§Return type

This is a varcall method, meaning parameters and return values are passed as Variant. It can detect call failures and will return Err in such a case.

pub fn set_deferred( &mut self, property: impl AsArg<StringName>, value: &Variant, )

pub fn callv( &mut self, method: impl AsArg<StringName>, arg_array: &Array<Variant>, ) -> Variant

pub fn has_method(&self, method: impl AsArg<StringName>) -> bool

pub fn get_method_argument_count(&self, method: impl AsArg<StringName>) -> i32

pub fn has_signal(&self, signal: impl AsArg<StringName>) -> bool

pub fn get_signal_list(&self) -> Array<Dictionary>

pub fn get_signal_connection_list( &self, signal: impl AsArg<StringName>, ) -> Array<Dictionary>

pub fn get_incoming_connections(&self) -> Array<Dictionary>

pub fn disconnect( &mut self, signal: impl AsArg<StringName>, callable: &Callable, )

pub fn is_connected( &self, signal: impl AsArg<StringName>, callable: &Callable, ) -> bool

pub fn has_connections(&self, signal: impl AsArg<StringName>) -> bool

pub fn set_block_signals(&mut self, enable: bool)

pub fn is_blocking_signals(&self) -> bool

pub fn notify_property_list_changed(&mut self)

pub fn set_message_translation(&mut self, enable: bool)

pub fn can_translate_messages(&self) -> bool

pub fn tr(&self, message: impl AsArg<StringName>) -> GString

To set the default parameters, use Self::tr_ex and its builder methods. See the book for detailed usage instructions.

pub fn tr_ex<'a>(&'a self, message: impl AsArg<StringName> + 'a) -> ExTr<'a>

pub fn tr_n( &self, message: impl AsArg<StringName>, plural_message: impl AsArg<StringName>, n: i32, ) -> GString

To set the default parameters, use Self::tr_n_ex and its builder methods. See the book for detailed usage instructions.

pub fn tr_n_ex<'a>( &'a self, message: impl AsArg<StringName> + 'a, plural_message: impl AsArg<StringName> + 'a, n: i32, ) -> ExTrN<'a>

pub fn get_translation_domain(&self) -> StringName

pub fn set_translation_domain(&mut self, domain: impl AsArg<StringName>)

pub fn is_queued_for_deletion(&self) -> bool

pub fn cancel_free(&mut self)

pub fn notify(&mut self, what: ObjectNotification)

⚠️ Sends a Godot notification to all classes inherited by the object.

Triggers calls to on_notification(), and depending on the notification, also to Godot’s lifecycle callbacks such as ready().

Starts from the highest ancestor (the Object class) and goes down the hierarchy. See also Godot docs for Object::notification().

§Panics

If you call this method on a user-defined object while holding a GdRef or GdMut guard on the instance, you will encounter a panic. The reason is that the receiving virtual method on_notification() acquires a GdMut lock dynamically, which must be exclusive.

pub fn notify_reversed(&mut self, what: ObjectNotification)

⚠️ Like Self::notify(), but starts at the most-derived class and goes up the hierarchy.

See docs of that method, including the panics.

Trait Implementations§

§

impl Bounds for RefCounted

§

type Memory = MemRefCounted

Defines the memory strategy of the static type.
§

type Declarer = DeclEngine

Whether this class is a core Godot class provided by the engine, or declared by the user as a Rust struct.
§

impl Debug for RefCounted

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Deref for RefCounted

§

type Target = Object

The resulting type after dereferencing.
§

fn deref(&self) -> &<RefCounted as Deref>::Target

Dereferences the value.
§

impl DerefMut for RefCounted

§

fn deref_mut(&mut self) -> &mut <RefCounted as Deref>::Target

Mutably dereferences the value.
§

impl GodotClass for RefCounted

§

const INIT_LEVEL: InitLevel = crate::init::InitLevel::Core

Initialization level, during which this class should be initialized with Godot. Read more
§

type Base = Object

The immediate superclass of T. This is always a Godot engine class.
§

fn class_id() -> ClassId

Globally unique class ID, linked to the name under which the class is registered in Godot. Read more
§

fn class_name() -> ClassId

👎Deprecated: Renamed to class_id()
§

fn inherits<Base>() -> bool
where Base: GodotClass,

Returns whether Self inherits from Base. Read more
§

impl Inherits<Object> for RefCounted

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AStar2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AStar3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AStarGrid2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AesContext

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimatedTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Animation

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationLibrary

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNode

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeAdd2

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeAdd3

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeAnimation

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeBlend2

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeBlend3

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeBlendSpace1D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeBlendSpace2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeBlendTree

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeOneShot

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeOutput

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeStateMachine

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeStateMachinePlayback

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeStateMachineTransition

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeSub2

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeSync

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeTimeScale

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeTimeSeek

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationNodeTransition

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AnimationRootNode

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ArrayMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ArrayOccluder3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AtlasTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioBusLayout

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffect

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectAmplify

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectBandLimitFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectBandPassFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectCapture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectChorus

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectCompressor

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectDelay

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectDistortion

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectEq

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectEq10

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectEq21

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectEq6

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectHardLimiter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectHighPassFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectHighShelfFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectInstance

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectLimiter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectLowPassFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectLowShelfFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectNotchFilter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectPanner

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectPhaser

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectPitchShift

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectRecord

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectReverb

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectSpectrumAnalyzer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectSpectrumAnalyzerInstance

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioEffectStereoEnhance

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioSample

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioSamplePlayback

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStream

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamGenerator

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamGeneratorPlayback

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamInteractive

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamMicrophone

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamMp3

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamOggVorbis

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamPlayback

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamPlaybackInteractive

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamPlaybackOggVorbis

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamPlaybackPlaylist

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamPlaybackPolyphonic

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamPlaybackResampled

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamPlaybackSynchronized

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamPlaylist

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamPolyphonic

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamRandomizer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamSynchronized

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for AudioStreamWav

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for BaseMaterial3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for BitMap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for BoneMap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for BoxMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for BoxOccluder3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for BoxShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ButtonGroup

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CallbackTweener

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CameraAttributes

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CameraAttributesPhysical

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CameraAttributesPractical

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CameraFeed

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CameraTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CanvasItemMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CanvasTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CapsuleMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CapsuleShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CapsuleShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CharFxTransform

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CircleShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CodeHighlighter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ColorPalette

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Compositor

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CompositorEffect

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CompressedCubemap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CompressedCubemapArray

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CompressedTexture2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CompressedTexture2DArray

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CompressedTexture3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CompressedTextureLayered

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ConcavePolygonShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ConcavePolygonShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ConfigFile

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ConvexPolygonShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ConvexPolygonShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Crypto

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CryptoKey

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Cubemap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CubemapArray

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Curve

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Curve2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Curve3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CurveTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CurveXyzTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CylinderMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for CylinderShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for DirAccess

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for DtlsServer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ENetConnection

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ENetMultiplayerPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ENetPacketPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorContextMenuPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorDebuggerPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorDebuggerSession

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorExportPlatform

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorExportPlatformAndroid

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorExportPlatformExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorExportPlatformIos

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorExportPlatformLinuxBsd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorExportPlatformMacOs

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorExportPlatformPc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorExportPlatformWeb

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorExportPlatformWindows

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorExportPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorExportPreset

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorFeatureProfile

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorFileSystemImportFormatSupportQuery

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorImportPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorInspectorPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorNode3DGizmo

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorNode3DGizmoPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorResourceConversionPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorResourcePreviewGenerator

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorResourceTooltipPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorSceneFormatImporter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorSceneFormatImporterBlend

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorSceneFormatImporterFbx2gltf

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorSceneFormatImporterGltf

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorSceneFormatImporterUfbx

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorScenePostImport

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorScenePostImportPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorScript

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorSettings

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorSyntaxHighlighter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EditorTranslationParserPlugin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EncodedObjectAsId

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for EngineProfiler

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Environment

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Expression

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ExternalTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for FastNoiseLite

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for FbxDocument

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for FbxState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for FileAccess

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for FogMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Font

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for FontFile

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for FontVariation

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GDExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GDScript

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GDScriptSyntaxHighlighter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfAccessor

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfAnimation

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfBufferView

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfCamera

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfDocument

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfDocumentExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfDocumentExtensionConvertImporterMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfLight

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfNode

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfObjectModelProperty

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfPhysicsBody

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfPhysicsShape

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfSkeleton

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfSkin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfSpecGloss

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GltfTextureSampler

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Gradient

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GradientTexture1D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for GradientTexture2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for HashingContext

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for HeightMapShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for HmacContext

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for HttpClient

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Image

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ImageFormatLoader

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ImageFormatLoaderExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ImageTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ImageTexture3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ImageTextureLayered

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ImmediateMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ImporterMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEvent

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventAction

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventFromWindow

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventGesture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventJoypadButton

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventJoypadMotion

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventKey

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventMagnifyGesture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventMidi

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventMouse

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventMouseButton

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventMouseMotion

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventPanGesture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventScreenDrag

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventScreenTouch

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventShortcut

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for InputEventWithModifiers

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for IntervalTweener

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for JavaObject

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Json

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for KinematicCollision2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for KinematicCollision3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for LabelSettings

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for LightmapGiData

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Lightmapper

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for LightmapperRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Material

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Mesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for MeshConvexDecompositionSettings

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for MeshDataTool

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for MeshLibrary

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for MeshTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for MethodTweener

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for MissingResource

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for MobileVrInterface

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for MultiMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for MultiplayerApi

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for MultiplayerApiExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for MultiplayerPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for MultiplayerPeerExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for NavigationMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for NavigationMeshSourceGeometryData2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for NavigationMeshSourceGeometryData3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for NavigationPathQueryParameters2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for NavigationPathQueryParameters3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for NavigationPathQueryResult2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for NavigationPathQueryResult3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for NavigationPolygon

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Node3DGizmo

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Noise

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for NoiseTexture2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for NoiseTexture3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Occluder3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OccluderPolygon2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OfflineMultiplayerPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OggPacketSequence

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OggPacketSequencePlayback

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OpenXrAction

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OpenXrActionBindingModifier

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OpenXrActionMap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OpenXrActionSet

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OpenXrAnalogThresholdModifier

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OpenXrApiExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OpenXrBindingModifier

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OpenXrDpadBindingModifier

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OpenXrHapticBase

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OpenXrHapticVibration

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OpenXrInteractionProfile

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OpenXrInterface

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OpenXrIpBinding

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OpenXripBindingModifier

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OptimizedTranslation

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for OrmMaterial3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PackedDataContainer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PackedDataContainerRef

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PackedScene

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PacketPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PacketPeerDtls

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PacketPeerExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PacketPeerStream

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PacketPeerUdp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PanoramaSkyMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ParticleProcessMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PckPacker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PhysicalSkyMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PhysicsMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PhysicsPointQueryParameters2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PhysicsPointQueryParameters3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PhysicsRayQueryParameters2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PhysicsRayQueryParameters3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PhysicsShapeQueryParameters2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PhysicsShapeQueryParameters3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PhysicsTestMotionParameters2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PhysicsTestMotionParameters3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PhysicsTestMotionResult2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PhysicsTestMotionResult3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PlaceholderCubemap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PlaceholderCubemapArray

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PlaceholderMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PlaceholderMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PlaceholderTexture2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PlaceholderTexture2DArray

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PlaceholderTexture3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PlaceholderTextureLayered

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PlaneMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PointMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PolygonOccluder3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PolygonPathFinder

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PortableCompressedTexture2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PrimitiveMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PrismMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ProceduralSkyMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for PropertyTweener

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for QuadMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for QuadOccluder3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RandomNumberGenerator

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdAttachmentFormat

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdFramebufferPass

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdPipelineColorBlendState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdPipelineColorBlendStateAttachment

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdPipelineDepthStencilState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdPipelineMultisampleState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdPipelineRasterizationState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdPipelineSpecializationConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdSamplerState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdShaderFile

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdShaderSource

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdShaderSpirv

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdTextureFormat

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdTextureView

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdUniform

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RdVertexAttribute

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RectangleShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RegEx

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RegExMatch

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RenderSceneBuffers

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RenderSceneBuffersConfiguration

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RenderSceneBuffersExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RenderSceneBuffersRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Resource

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceFormatLoader

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceFormatSaver

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporterBitMap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporterBmFont

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporterCsvTranslation

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporterDynamicFont

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporterImage

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporterImageFont

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporterLayeredTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporterMp3

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporterObj

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporterOggVorbis

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporterScene

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporterShaderFile

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporterTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporterTextureAtlas

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ResourceImporterWav

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RibbonTrailMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for RichTextEffect

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SceneMultiplayer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SceneReplicationConfig

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SceneState

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SceneTreeTimer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Script

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ScriptExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SegmentShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SeparationRayShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SeparationRayShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Shader

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ShaderInclude

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ShaderMaterial

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Shape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Shape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Shortcut

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SkeletonModification2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SkeletonModification2DJiggle

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SkeletonModification2DLookAt

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SkeletonModification2DPhysicalBones

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SkeletonModification2DStackHolder

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SkeletonModification2DTwoBoneIk

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SkeletonModification2Dccdik

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SkeletonModification2Dfabrik

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SkeletonModificationStack2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SkeletonProfile

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SkeletonProfileHumanoid

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Skin

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SkinReference

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Sky

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SphereMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SphereOccluder3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SphereShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SpriteFrames

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for StandardMaterial3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for StreamPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for StreamPeerBuffer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for StreamPeerExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for StreamPeerGzip

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for StreamPeerTcp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for StreamPeerTls

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for StyleBox

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for StyleBoxEmpty

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for StyleBoxFlat

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for StyleBoxLine

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for StyleBoxTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SubtweenTweener

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SurfaceTool

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SyntaxHighlighter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for SystemFont

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TcpServer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TextLine

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TextMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TextParagraph

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TextServer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TextServerAdvanced

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TextServerDummy

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TextServerExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Texture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Texture2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Texture2DArray

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Texture2DArrayRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Texture2Drd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Texture3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Texture3Drd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TextureCubemapArrayRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TextureCubemapRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TextureLayered

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TextureLayeredRd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Theme

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TileMapPattern

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TileSet

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TileSetAtlasSource

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TileSetScenesCollectionSource

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TileSetSource

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TlsOptions

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TorusMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Translation

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TranslationDomain

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TriangleMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for TubeTrailMesh

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Tween

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Tweener

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for UdpServer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for Upnp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for UpnpDevice

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VideoStream

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VideoStreamPlayback

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VideoStreamTheora

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ViewportTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShader

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNode

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeBillboard

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeBooleanConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeBooleanParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeClamp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeColorConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeColorFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeColorOp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeColorParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeComment

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeCompare

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeCubemap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeCubemapParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeCurveTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeCurveXyzTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeCustom

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeDerivativeFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeDeterminant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeDistanceFade

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeDotProduct

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeExpression

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeFaceForward

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeFloatConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeFloatFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeFloatOp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeFloatParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeFrame

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeFresnel

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeGlobalExpression

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeGroupBase

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeIf

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeInput

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeIntConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeIntFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeIntOp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeIntParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeIs

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeLinearSceneDepth

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeMix

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeMultiplyAdd

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeOuterProduct

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeOutput

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeParameterRef

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeParticleAccelerator

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeParticleBoxEmitter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeParticleConeVelocity

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeParticleEmit

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeParticleEmitter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeParticleMeshEmitter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeParticleMultiplyByAxisAngle

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeParticleOutput

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeParticleRandomness

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeParticleRingEmitter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeParticleSphereEmitter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeProximityFade

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeRandomRange

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeRemap

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeReroute

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeResizableBase

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeRotationByAxis

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeSample3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeScreenNormalWorldSpace

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeScreenUvToSdf

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeSdfRaymarch

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeSdfToScreenUv

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeSmoothStep

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeStep

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeSwitch

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTexture

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTexture2DArray

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTexture2DArrayParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTexture2DParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTexture3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTexture3DParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTextureParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTextureParameterTriplanar

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTextureSdf

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTextureSdfNormal

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTransformCompose

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTransformConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTransformDecompose

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTransformFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTransformOp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTransformParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeTransformVecMult

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeUIntConstant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeUIntFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeUIntOp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeUIntParameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeUvFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeUvPolarCoord

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVarying

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVaryingGetter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVaryingSetter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVec2Constant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVec2Parameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVec3Constant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVec3Parameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVec4Constant

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVec4Parameter

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVectorBase

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVectorCompose

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVectorDecompose

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVectorDistance

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVectorFunc

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVectorLen

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVectorOp

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeVectorRefract

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VisualShaderNodeWorldPositionFromDepth

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for VoxelGiData

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for WeakRef

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for WebRtcDataChannel

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for WebRtcDataChannelExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for WebRtcMultiplayerPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for WebRtcPeerConnection

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for WebRtcPeerConnectionExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for WebSocketMultiplayerPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for WebSocketPeer

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for WebXrInterface

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for World2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for World3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for WorldBoundaryShape2D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for WorldBoundaryShape3D

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for X509Certificate

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for XmlParser

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for XrBodyTracker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for XrControllerTracker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for XrFaceTracker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for XrHandTracker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for XrInterface

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for XrInterfaceExtension

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for XrPose

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for XrPositionalTracker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for XrTracker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ZipPacker

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl Inherits<RefCounted> for ZipReader

§

const IS_SAME_CLASS: bool = false

True iff Self == Base. Read more
§

impl WithSignals for RefCounted

§

type SignalCollection<'c, C: WithSignals> = SignalsOfObject<'c, C>

The associated struct listing all signals of this class. Read more
§

impl GodotDefault for RefCounted

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Inherits<T> for T
where T: GodotClass,

§

const IS_SAME_CLASS: bool = true

True iff Self == Base. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> NewGd for T
where T: GodotDefault<Memory = MemRefCounted> + Bounds,

§

fn new_gd() -> Gd<T>

Return a new, ref-counted Gd containing a default-constructed instance. Read more
Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> UniformObjectDeref<DeclEngine> for T
where T: GodotClass<Declarer = DeclEngine>,

§

type TargetRef<'a> = Gd<T>

§

type TargetMut<'a> = Gd<T>

§

fn object_as_ref<'a>( gd: &'a Gd<T>, ) -> <T as UniformObjectDeref<DeclEngine>>::TargetRef<'a>

§

fn object_as_mut<'a>( gd: &'a mut Gd<T>, ) -> <T as UniformObjectDeref<DeclEngine>>::TargetMut<'a>