(profile: &ProviderTypeProfile)
| 982 | } |
| 983 | |
| 984 | pub fn profile_to_yaml(profile: &ProviderTypeProfile) -> Result<String, ProfileError> { |
| 985 | Ok(serde_yml::to_string(profile)?) |
| 986 | } |
| 987 | |
| 988 | pub fn profile_to_json(profile: &ProviderTypeProfile) -> Result<String, ProfileError> { |
| 989 | Ok(serde_json::to_string_pretty(profile)?) |
no outgoing calls