Nota bene: There are some instances which will cause panics at parse time. Those are still being worked on. The instances in question are: * Adding a functional group with no iterchange (encountering a GS segment before an ISA segment) * Adding a transaction without a functional group in the interchange (encountering an ST segment before a GS in an interchange) * Adding a segment without a transaction (encountering any segment without a containing ST segment)
If you are parsing valid EDI documents, the parser will never panic.
parse
and loose_parse
. loose_parse
is less strict on the format of the incoming EDI document.EdiDocument
.EdiDocument
and all data it contains implement Serialize
and Deserialize
from serde
, so zero-copy serialization and deserialization to any serde-able format is supported (this includes json).EdiDocument
's fields are all public and it can be navigated like any other struct for simplicity