pub trait ScriptDisplay: Display { }
Expand description
A script displaying formatting operator.
Implementing this trait enables the Object::display operation.
The underlying type on which this trait is implemented must also implement the Display 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.