(&self)
| 35 | |
| 36 | impl ToString for TextAreaCharCounter { |
| 37 | fn to_string(&self) -> String { |
| 38 | use TextAreaCharCounter::*; |
| 39 | match self { |
| 40 | Internal => "internal", |
| 41 | External => "external", |
| 42 | } |
| 43 | .to_string() |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | /// Props for [`TextArea`] |
nothing calls this directly
no outgoing calls
no test coverage detected