rust/src/libcore/from_str.rs

9 lines
147 B
Rust

//! The trait for types that can be created from strings
use option::Option;
trait FromStr {
static fn from_str(s: &str) -> Option<self>;
}