-
Notifications
You must be signed in to change notification settings - Fork 236
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing field "StructuredType" #435
Comments
The problem in the nested #[test]
fn nested_list() {
#[derive(Debug, Deserialize, PartialEq)]
pub struct Root {
pub list1: Vec<()>,
pub list2: Vec<List>,
}
#[derive(Debug, Deserialize, PartialEq)]
pub struct List {
pub inner_list: Vec<()>,
}
from_str::<Root>(
r#"
<?xml version="1.0" encoding="utf-8" ?>
<root>
<list2><inner_list/></list2>
<list1/>
<list2><inner_list/></list2>
</root>
"#,
)
.unwrap();
}
|
Mingun
added a commit
to Mingun/quick-xml
that referenced
this issue
Aug 6, 2022
Mingun
added a commit
to Mingun/quick-xml
that referenced
this issue
Aug 7, 2022
Mingun
added a commit
to Mingun/quick-xml
that referenced
this issue
Aug 7, 2022
dralley
added a commit
that referenced
this issue
Aug 7, 2022
Fix #435: replay only events from time of creating SeqAccess struct
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here is my xml file:
My rust code:
Then an error happend:
Custom("missing field
StructuredType")
The text was updated successfully, but these errors were encountered: