pub trait FromString {
    // Required method
    fn from(input: String) -> Self;
}

Required Methods§

source

fn from(input: String) -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl FromString for Option<Shell<'_>>

source§

fn from(input: String) -> Self

Implementors§