Files
rust/src/libcore/from_str.rs
T
2012-11-18 13:25:27 -08:00

13 lines
251 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;
pub trait FromStr {
static pure fn from_str(s: &str) -> Option<self>;
}