We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b8df20 commit d570536Copy full SHA for d570536
godot-core/src/meta/traits.rs
@@ -175,6 +175,7 @@ pub trait ArrayElement: GodotType + ToGodot + FromGodot + sealed::Sealed + meta:
175
builtin_type_string::<Self>()
176
}
177
178
+ #[doc(hidden)]
179
fn debug_validate_elements(_array: &builtin::Array<Self>) -> Result<(), ConvertError> {
180
// No-op for most element types.
181
Ok(())
godot-core/src/registry/property.rs
@@ -60,6 +60,7 @@ pub trait Export: Var {
60
///
61
/// Only overridden for `Gd<T>`, to detect erroneous exports of `Node` inside a `Resource` class.
62
#[allow(clippy::wrong_self_convention)]
63
64
fn as_node_class() -> Option<ClassName> {
65
None
66
0 commit comments