(text: impl Into<String>)
| 26 | |
| 27 | impl StatusLine { |
| 28 | pub fn title(text: impl Into<String>) -> Self { |
| 29 | Self { |
| 30 | text: text.into(), |
| 31 | kind: StatusLineKind::Title, |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | pub fn normal(text: impl Into<String>) -> Self { |
| 36 | Self { |
no outgoing calls
no test coverage detected