(input: &str)
| 974 | } |
| 975 | |
| 976 | pub fn parse_profile_yaml(input: &str) -> Result<ProviderTypeProfile, ProfileError> { |
| 977 | Ok(serde_yml::from_str::<ProviderTypeProfile>(input)?) |
| 978 | } |
| 979 | |
| 980 | pub fn parse_profile_json(input: &str) -> Result<ProviderTypeProfile, ProfileError> { |
| 981 | Ok(serde_json::from_str::<ProviderTypeProfile>(input)?) |
no outgoing calls