(input: &str)
| 978 | } |
| 979 | |
| 980 | pub fn parse_profile_json(input: &str) -> Result<ProviderTypeProfile, ProfileError> { |
| 981 | Ok(serde_json::from_str::<ProviderTypeProfile>(input)?) |
| 982 | } |
| 983 | |
| 984 | pub fn profile_to_yaml(profile: &ProviderTypeProfile) -> Result<String, ProfileError> { |
| 985 | Ok(serde_yml::to_string(profile)?) |
no outgoing calls