pub trait MaybeFromStr: FromStr { }
Expand description

A type that implements FromStr when in std environment.

Object Safety§

This trait is not object safe.

Implementors§

§

impl<T> MaybeFromStr for T
where T: FromStr,