Trait Export
pub trait Export: Var {
// Provided method
fn export_hint() -> PropertyHintInfo { ... }
}
Expand description
Trait implemented for types that can be used as #[export]
fields.
To export objects, see the Exporting section of Gd<T>
.
For enums, this trait can be derived using the #[derive(Export)]
macro.
Provided Methods§
fn export_hint() -> PropertyHintInfo
fn export_hint() -> PropertyHintInfo
The export info to use for an exported field of this type, if no other export info is specified.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
§impl Export for bool
impl Export for bool
fn export_hint() -> PropertyHintInfo
§impl Export for f32
impl Export for f32
fn export_hint() -> PropertyHintInfo
§impl Export for f64
impl Export for f64
fn export_hint() -> PropertyHintInfo
§impl Export for i8
impl Export for i8
fn export_hint() -> PropertyHintInfo
§impl Export for i16
impl Export for i16
fn export_hint() -> PropertyHintInfo
§impl Export for i32
impl Export for i32
fn export_hint() -> PropertyHintInfo
§impl Export for i64
impl Export for i64
fn export_hint() -> PropertyHintInfo
§impl Export for u8
impl Export for u8
fn export_hint() -> PropertyHintInfo
§impl Export for u16
impl Export for u16
fn export_hint() -> PropertyHintInfo
§impl Export for u32
impl Export for u32
fn export_hint() -> PropertyHintInfo
§impl<T> Export for Option<Gd<T>>
See Gd
Exporting section.
impl<T> Export for Option<Gd<T>>
See Gd
Exporting section.
fn export_hint() -> PropertyHintInfo
§impl<T> Export for Option<T>
impl<T> Export for Option<T>
fn export_hint() -> PropertyHintInfo
§impl<T, D> Export for Option<DynGd<T, D>>
See DynGd
Exporting section.
impl<T, D> Export for Option<DynGd<T, D>>
See DynGd
Exporting section.
fn export_hint() -> PropertyHintInfo
Implementors§
impl Export for Aabb
impl Export for Basis
impl Export for Color
impl Export for Dictionary
impl Export for GString
impl Export for NodePath
impl Export for Plane
impl Export for Projection
impl Export for Quaternion
impl Export for Rect2
impl Export for Rect2i
impl Export for StringName
impl Export for Transform2D
impl Export for Transform3D
impl Export for Variant
impl Export for Vector2
impl Export for Vector2i
impl Export for Vector3
impl Export for Vector3i
impl Export for Vector4
impl Export for Vector4i
impl<T> Export for Array<Gd<T>>where
T: GodotClass<Exportable = Yes> + Bounds,
impl<T> Export for Array<T>where
T: ArrayElement + Export,
impl<T> Export for OnEditor<Gd<T>>
See Gd
Exporting section.
impl<T> Export for OnEditor<T>
impl<T> Export for PackedArray<T>where
T: PackedArrayElement,
impl<T> Export for PhantomVar<T>
impl<T, D> Export for Array<DynGd<T, D>>
#[export]
for Array<DynGd<T, D>>
is available only for T
being Engine class (such as Node or Resource).
Consider exporting Array<Gd<T>>
instead of Array<DynGd<T, D>>
for user-declared GDExtension classes.
impl<T, D> Export for OnEditor<DynGd<T, D>>
See DynGd
Exporting section.