pub fn decode_bool(atom: &str) -> Option<bool>
Decodes a boolean value
Returns Some(true) if atom is "true", Some(false) if atom is "false", or None otherwise.
Some(true)
atom
"true"
Some(false)
"false"
None