1use crate::as_bool::AsBool; 2 3impl AsBool for String { 4 fn as_bool(&self) -> bool { 5 self.as_str().as_bool() 6 } 7}