Skip to main content

IntoReadable

Trait IntoReadable 

Source
pub trait IntoReadable<T: 'static> {
    // Required method
    fn into_readable(self) -> Readable<T>;
}

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T: 'static + PartialEq> IntoReadable<T> for T

Source§

impl<T: 'static> IntoReadable<T> for Memo<T>

Source§

impl<T: 'static> IntoReadable<T> for State<T>