1use crate::as_bool::AsBool; 2use crate::from_str::FromStr; 3 4impl FromStr for bool { 5 fn from_str(str: &str) -> Self { 6 str.as_bool() 7 } 8}