-
Notifications
You must be signed in to change notification settings - Fork 5
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
Itemlists2 #24
base: serde
Are you sure you want to change the base?
Itemlists2 #24
Conversation
This was my misunderstanding of tests in another project. These extra bools weren't supported earlier and there is no good reason to introduce them now. At least right now. This reverts commit a314885.
Custom errors for validators
README.md has a pointer or doc/ doc/README.md, new file, tells it sphinx-doc.
There is now a `main()` which makes it a working program. Function `work(cfg)` uses the configuration from the YAML file. Allow that not all fields of the configuration structure are used. Fixed a typo ( `macor` versus `macro` )
Working example for lib.rs
Bumped the year in sphinx-doc
Document there is more documentation
new file: examples/item_lists.rs gets compiled new file: examples/journey.yaml gets read Item lists gets printed with {:?} debug formatting. Iteration over a list of items not yet possible. Contains TODO marker to validate an enumeration.
Pull Request is for issue #20 and superseeds #21, is against the Reason for staging is that only partly is works, it does NOT do iterate of a list.
Upon
is compiler error
|
|
||
#[derive(Debug,Deserialize)] | ||
struct Members(Vec<String>); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should there be something like
struct JourneyIter {
team: Iterator;
locations: Iterator;
vehicles: Enumerator:
}
Or does rust-quire
that already and have I no clue how to use it? ( Yes,I'm the person that opened #21, Item lists example :-/
)
No description provided.