Objects that can be turned into other objects.
trait Into<T> { /* Required methods */ fn into(self) -> T }
self
Turns the object into another object.