(value: ServerKindArg)
| 890 | |
| 891 | impl From<ServerKindArg> for ServerKind { |
| 892 | fn from(value: ServerKindArg) -> Self { |
| 893 | match value { |
| 894 | ServerKindArg::LaunchAgent => ServerKind::LaunchAgent, |
| 895 | ServerKindArg::Workspace => ServerKind::Workspace, |
| 896 | ServerKindArg::Foreground => ServerKind::Foreground, |
| 897 | ServerKindArg::Standalone => ServerKind::Standalone, |
| 898 | } |
| 899 | } |
| 900 | } |
| 901 | |
| 902 | #[derive(Clone, Copy, Debug, Eq, PartialEq, ValueEnum)] |
no outgoing calls
no test coverage detected