13 lines
242 B
Rust
13 lines
242 B
Rust
//! The trait for types that can be created from strings
|
|
|
|
// NB: transitionary, de-mode-ing.
|
|
#[forbid(deprecated_mode)];
|
|
#[forbid(deprecated_pattern)];
|
|
|
|
use option::Option;
|
|
|
|
trait FromStr {
|
|
static fn from_str(s: &str) -> Option<self>;
|
|
}
|
|
|