(profile: &ProviderTypeProfile)
| 986 | } |
| 987 | |
| 988 | pub fn profile_to_json(profile: &ProviderTypeProfile) -> Result<String, ProfileError> { |
| 989 | Ok(serde_json::to_string_pretty(profile)?) |
| 990 | } |
| 991 | |
| 992 | pub fn profiles_to_yaml(profiles: &[ProviderTypeProfile]) -> Result<String, ProfileError> { |
| 993 | Ok(serde_yml::to_string(profiles)?) |
no outgoing calls