Skip to main content

ParsableFrom

Trait ParsableFrom 

Source
pub trait ParsableFrom<T> {
    // Required method
    fn from_parsable(value: T) -> Self;
}
Expand description

Types that may be parsed from another

Required Methods§

Source

fn from_parsable(value: T) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T, R> ParsableFrom<RecursiveWrapper<T, R>> for T