(cx: &mut Context<Self>)
| 39 | pub struct FormDataEditor { |
| 40 | rows: Vec<FormDataRow>, |
| 41 | bulk_mode: bool, |
| 42 | bulk_editor: Option<Entity<InputState>>, |
| 43 | focus_handle: FocusHandle, |
| 44 | completion_engine: Option<CompletionEngine>, |
| 45 | } |
| 46 | |
| 47 | #[allow(dead_code)] |
| 48 | impl FormDataEditor { |
| 49 | pub fn new(completion_engine: Option<CompletionEngine>, cx: &mut Context<Self>) -> Self { |
no test coverage detected