(input_state: Entity<InputState>)
| 29 | } |
| 30 | |
| 31 | impl UrlBar { |
| 32 | pub fn new(input_state: Entity<InputState>) -> Self { |
| 33 | Self { |
| 34 | input_state, |
| 35 | method_dropdown: None, |
| 36 | request: None, |
| 37 | is_loading: false, |
| 38 | on_send: None, |
| 39 | on_cancel: None, |
| 40 | on_save_to_collection: None, |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | pub fn method_dropdown( |
nothing calls this directly
no outgoing calls
no test coverage detected