A trait for converting a value to aString.
This trait is automatically implemented for any type which implements theDisplay trait. As such,ToString shouldn’t be implemented directly:Display should be implemented instead, and you get theToStringimplementation for free.