Trait lrs::into::Into

Objects that can be turned into other objects.

Syntax

trait Into<T> {
    /* Required methods */
    fn into(self) -> T
}

Methods

ReceiverNameDescription
selfinto

Turns the object into another object.