Expand description
This crate contains the internal procedural macros
used by the sixtyfps-corelib crateNOTE: This library is an internal crate for the SixtyFPS project.
This crate should not be used directly by applications using SixtyFPS.
You should use the sixtyfps crate instead.
WARNING: This crate does not follow the semver convention for versioning and can
only be used with version = "=x.y.z" in Cargo.toml.
Derive Macrosยง
- SixtyFPS
Element - This derive macro is used with structures in the run-time library that are meant
to be exposed to the language. The structure is introspected for properties and fields
marked with the
rtti_fieldattribute and generates run-time type information for use with the interpreter. In addition allProperty<T> foofields get a convenient getter function generated that works on aPin<&Self>receiver.