Skip to main content

Mojo trait

TilePayload

Trait for tile payload types. Must be @register_passable("trivial").

Implemented traitsโ€‹

AnyType, ImplicitlyDestructible

comptime membersโ€‹

__del__is_trivialโ€‹

comptime __del__is_trivial

A flag (often compiler generated) to indicate whether the implementation of __del__ is trivial.

The implementation of __del__ is considered to be trivial if:

  • The struct has a compiler-generated trivial destructor and all its fields have a trivial __del__ method.

In practice, it means that the __del__ can be considered as no-op.

Was this page helpful?