pub trait ScriptDebug: Debug { }
Expand description
A script debugging formatting operator.
Implementing this trait enables the Object::debug operation.
The underlying type on which this trait is implemented must also implement the Debug trait, which provides the actual implementation of the script debugging operation.
The trait must be implemented for the registered type, and the implementation must be exported using the export macro. For more details, see the module documentation.