(cx: &mut Context<Self>)
| 41 | } |
| 42 | |
| 43 | /// Params editor |
| 44 | pub struct ParamsEditor { |
| 45 | param_rows: Vec<ParamRow>, |
| 46 | bulk_mode: bool, |
| 47 | bulk_editor: Option<Entity<InputState>>, |
| 48 | focus_handle: FocusHandle, |
| 49 | completion_engine: Option<CompletionEngine>, |
| 50 | } |
| 51 |
no test coverage detected