| 853 | // |
| 854 | |
| 855 | pub trait ChartInstallationChecker: Send { |
| 856 | fn verify_installation(&self, kube_client: &kube::Client) -> Result<(), CommandError>; |
| 857 | fn clone_dyn(&self) -> Box<dyn ChartInstallationChecker>; |
| 858 | } |
| 859 | |
| 860 | impl Clone for Box<dyn ChartInstallationChecker> { |
| 861 | fn clone(&self) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected