(&self, f: &mut std::fmt::Formatter<'_>)
| 16 | |
| 17 | impl Display for DeployKind { |
| 18 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 19 | match self { |
| 20 | DeployKind::Function => write!(f, "function"), |
| 21 | DeployKind::Extension => write!(f, "extension"), |
| 22 | } |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | #[derive(Serialize)] |
nothing calls this directly
no test coverage detected