You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pubfnget_xml_config_from_file(file_path:&Path) -> Result<XmlConfig,Error>{info!("load xml configuration from file '{}'", file_path.display());let xml = fs::read_to_string(file_path).context("couldn't read xml file")?;let config:XmlConfig = from_str(&xml).context("couldn't deserialize xml from file")?;debug!("---[xml config]---");debug!("{:?}", config);debug!("---[/xml config]---");Ok(config)}
And i got error:
[custom](custom: missing field `id`)
Any suggestions?
The text was updated successfully, but these errors were encountered:
Help me to solve puzzle. I have xml from sysPass:
I don't need all tags, but i need just category ids:
Function:
And i got error:
Any suggestions?
The text was updated successfully, but these errors were encountered: