influxdb/internal_types
Carol (Nichols || Goulding) febc1538ff
chore: Update Rust version (#1445)
* chore: Update Rust version

* refactor: Make struct constructor field orderings consistent

Sometimes I changed the struct definition, sometimes changed the struct
construction instance, depending on consistency with code around each
(other similar structs, function argument orders, etc)

More info: https://rust-lang.github.io/rust-clippy/master/index.html#inconsistent_struct_constructor

* refactor: Use flatten where appropriate

One instance is a false positive with a clippy bug.

More info:

- https://rust-lang.github.io/rust-clippy/master/index.html#filter_map_identity
- https://rust-lang.github.io/rust-clippy/master/index.html#manual_flatten

* refactor: Use Option map instead of match

More info: https://rust-lang.github.io/rust-clippy/master/index.html#manual_map

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2021-05-06 22:07:10 +00:00
..
src chore: Update Rust version (#1445) 2021-05-06 22:07:10 +00:00
Cargo.toml refactor: split entry out into separate crate (#1428) 2021-05-06 11:36:23 +00:00
README.md refactor: Move some types (not yet exposed to clients) into internal_types (#1015) 2021-03-19 16:27:57 +00:00

README.md

Internal Types

This crate contains InfluxDB IOx "internal" types which are shared across crates and internally between IOx instances, but not exposed externally to clients

Internal in this case means that changing the structs is designed not to require additional coordination / organization with clients.