-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba9cd18
commit a7d86e1
Showing
11 changed files
with
205 additions
and
60 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
use serde::Deserialize; | ||
|
||
|
||
#[derive(Debug, Default, PartialEq, Deserialize)] | ||
#[derive(Debug, PartialEq, Deserialize)] | ||
pub struct EncodingIdentifier { | ||
#[serde(rename = "@Radix")] | ||
pub radix: i8, | ||
#[serde(rename = "$text")] | ||
pub text: String, | ||
} | ||
|
||
#[derive(Debug, Default, PartialEq, Deserialize)] | ||
#[derive(Debug, PartialEq, Deserialize)] | ||
pub struct EncodingIdentifierMask { | ||
#[serde(rename = "@Radix")] | ||
pub radix: i8, | ||
#[serde(rename = "$text")] | ||
pub text: String, | ||
} | ||
|
||
#[derive(Debug, Default, PartialEq, Deserialize)] | ||
#[serde(default, rename_all = "PascalCase")] | ||
#[derive(Debug, PartialEq, Deserialize)] | ||
#[serde(rename_all = "PascalCase")] | ||
pub struct EncodingIdentifiers { | ||
pub encoding_identifier: Vec<EncodingIdentifier>, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.