-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix struct export in rust reqwest (#6453)
- Loading branch information
Showing
8 changed files
with
138 additions
and
20 deletions.
There are no files selected for viewing
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
13 changes: 13 additions & 0 deletions
13
samples/client/petstore/rust/hyper/fileResponseTest/.openapi-generator/FILES
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.gitignore | ||
.travis.yml | ||
Cargo.toml | ||
README.md | ||
docs/DefaultApi.md | ||
git_push.sh | ||
src/apis/client.rs | ||
src/apis/configuration.rs | ||
src/apis/default_api.rs | ||
src/apis/mod.rs | ||
src/apis/request.rs | ||
src/lib.rs | ||
src/models/mod.rs |
29 changes: 29 additions & 0 deletions
29
samples/client/petstore/rust/hyper/petstore/.openapi-generator/FILES
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
.gitignore | ||
.travis.yml | ||
Cargo.toml | ||
README.md | ||
docs/ApiResponse.md | ||
docs/Category.md | ||
docs/Order.md | ||
docs/Pet.md | ||
docs/PetApi.md | ||
docs/StoreApi.md | ||
docs/Tag.md | ||
docs/User.md | ||
docs/UserApi.md | ||
git_push.sh | ||
src/apis/client.rs | ||
src/apis/configuration.rs | ||
src/apis/mod.rs | ||
src/apis/pet_api.rs | ||
src/apis/request.rs | ||
src/apis/store_api.rs | ||
src/apis/user_api.rs | ||
src/lib.rs | ||
src/models/api_response.rs | ||
src/models/category.rs | ||
src/models/mod.rs | ||
src/models/order.rs | ||
src/models/pet.rs | ||
src/models/tag.rs | ||
src/models/user.rs |
15 changes: 15 additions & 0 deletions
15
samples/client/petstore/rust/hyper/rust-test/.openapi-generator/FILES
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.gitignore | ||
.travis.yml | ||
Cargo.toml | ||
README.md | ||
docs/DefaultApi.md | ||
docs/TypeTesting.md | ||
git_push.sh | ||
src/apis/client.rs | ||
src/apis/configuration.rs | ||
src/apis/default_api.rs | ||
src/apis/mod.rs | ||
src/apis/request.rs | ||
src/lib.rs | ||
src/models/mod.rs | ||
src/models/type_testing.rs |
12 changes: 12 additions & 0 deletions
12
samples/client/petstore/rust/reqwest/fileResponseTest/.openapi-generator/FILES
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.gitignore | ||
.travis.yml | ||
Cargo.toml | ||
README.md | ||
docs/DefaultApi.md | ||
git_push.sh | ||
src/apis/client.rs | ||
src/apis/configuration.rs | ||
src/apis/default_api.rs | ||
src/apis/mod.rs | ||
src/lib.rs | ||
src/models/mod.rs |
28 changes: 28 additions & 0 deletions
28
samples/client/petstore/rust/reqwest/petstore/.openapi-generator/FILES
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.gitignore | ||
.travis.yml | ||
Cargo.toml | ||
README.md | ||
docs/ApiResponse.md | ||
docs/Category.md | ||
docs/Order.md | ||
docs/Pet.md | ||
docs/PetApi.md | ||
docs/StoreApi.md | ||
docs/Tag.md | ||
docs/User.md | ||
docs/UserApi.md | ||
git_push.sh | ||
src/apis/client.rs | ||
src/apis/configuration.rs | ||
src/apis/mod.rs | ||
src/apis/pet_api.rs | ||
src/apis/store_api.rs | ||
src/apis/user_api.rs | ||
src/lib.rs | ||
src/models/api_response.rs | ||
src/models/category.rs | ||
src/models/mod.rs | ||
src/models/order.rs | ||
src/models/pet.rs | ||
src/models/tag.rs | ||
src/models/user.rs |
14 changes: 14 additions & 0 deletions
14
samples/client/petstore/rust/reqwest/rust-test/.openapi-generator/FILES
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.gitignore | ||
.travis.yml | ||
Cargo.toml | ||
README.md | ||
docs/DefaultApi.md | ||
docs/TypeTesting.md | ||
git_push.sh | ||
src/apis/client.rs | ||
src/apis/configuration.rs | ||
src/apis/default_api.rs | ||
src/apis/mod.rs | ||
src/lib.rs | ||
src/models/mod.rs | ||
src/models/type_testing.rs |