| 21 | pub value_input: Entity<InputState>, |
| 22 | pub file_path: Option<PathBuf>, |
| 23 | pub enabled: bool, |
| 24 | } |
| 25 | |
| 26 | #[derive(Debug, Clone)] |
| 27 | pub struct MultipartFormField { |
| 28 | pub key: String, |
| 29 | pub value: String, |
| 30 | pub file_path: Option<PathBuf>, |
| 31 | pub enabled: bool, |
nothing calls this directly
no outgoing calls
no test coverage detected