(&self)
| 26 | } |
| 27 | |
| 28 | pub fn get_value(&self) -> &str { |
| 29 | if self.value.is_empty() { |
| 30 | &self.placeholder |
| 31 | } else { |
| 32 | &self.value |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | impl Component for Input { |
nothing calls this directly
no outgoing calls
no test coverage detected