(key: &'static str)
| 103 | } |
| 104 | |
| 105 | pub fn code(key: &'static str) -> Self { |
| 106 | Self::new(key, FieldType::Code) |
| 107 | } |
| 108 | |
| 109 | pub fn select(key: &'static str, options: Vec<&'static str>) -> Self { |
| 110 | Self::new(key, FieldType::Select).with_options(options) |
nothing calls this directly
no outgoing calls
no test coverage detected