1use crate::records::property_type_path::Property; 2 3impl Property { 4 pub fn read(&mut self, name: &str) -> Property { 5 Property::property_string_bool(name, true) 6 } 7}