type definitions should occur in a stable order (rustfmt)
This commit is contained in:
parent
abf423f96c
commit
aab5061b56
|
@ -974,7 +974,10 @@ fn gen(api: &OpenAPI, ts: &mut TypeSpace) -> Result<String> {
|
||||||
* a stable order within the file, so we first collect a list of type IDs
|
* a stable order within the file, so we first collect a list of type IDs
|
||||||
* that we can sort by their visible name.
|
* that we can sort by their visible name.
|
||||||
*/
|
*/
|
||||||
let mut ids = ts.id_to_entry.values().filter_map(|te| match &te.details {
|
let mut ids = ts
|
||||||
|
.id_to_entry
|
||||||
|
.values()
|
||||||
|
.filter_map(|te| match &te.details {
|
||||||
TypeDetails::Object(_)
|
TypeDetails::Object(_)
|
||||||
| TypeDetails::NewType(_)
|
| TypeDetails::NewType(_)
|
||||||
| TypeDetails::Enumeration(_) => {
|
| TypeDetails::Enumeration(_) => {
|
||||||
|
@ -984,7 +987,8 @@ fn gen(api: &OpenAPI, ts: &mut TypeSpace) -> Result<String> {
|
||||||
| TypeDetails::Unknown
|
| TypeDetails::Unknown
|
||||||
| TypeDetails::Array(_)
|
| TypeDetails::Array(_)
|
||||||
| TypeDetails::Optional(_) => None,
|
| TypeDetails::Optional(_) => None,
|
||||||
}).collect::<Vec<_>>();
|
})
|
||||||
|
.collect::<Vec<_>>();
|
||||||
ids.sort_by(|a, b| a.0.cmp(&b.0));
|
ids.sort_by(|a, b| a.0.cmp(&b.0));
|
||||||
|
|
||||||
a("pub mod types {");
|
a("pub mod types {");
|
||||||
|
|
Loading…
Reference in New Issue