pub trait IntoRant: Sized {
    fn into_rant(self) -> RantValue;
}
Expand description

Enables infallible conversion into a RantValue.

Required Methods

Converts to a RantValue.

Implementations on Foreign Types

Implementors