1 //! # Implementing `FromStr` 2 //! 3 //! The [`FromStr` trait][std::str::FromStr] provides 4 //! a common interface to parse from a string. 5 //! 6 //! ```rust 7 #![doc = include_str!("../../examples/css/parser.rs")] 8 //! ``` 9