Skip to content
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

feat: implement std::fmt::Display for all Error types #140

Merged
merged 3 commits into from
Mar 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@ atrium-api/src/app.rs linguist-generated=true
atrium-api/src/app/** linguist-generated=true
atrium-api/src/com.rs linguist-generated=true
atrium-api/src/com/** linguist-generated=true
atrium-api/src/tools.rs linguist-generated=true
atrium-api/src/tools/** linguist-generated=true
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I forgot to add these when I made the changes that created these files earlier. Thank you very much!

atrium-api/src/client.rs linguist-generated=true
atrium-api/src/records.rs linguist-generated=true
8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/actor/get_preferences.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/actor/get_profile.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/actor/get_profiles.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/actor/get_suggestions.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/actor/put_preferences.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/actor/search_actors.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/actor/search_actors_typeahead.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/feed/describe_feed_generator.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/feed/get_actor_feeds.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions atrium-api/src/app/bsky/feed/get_actor_likes.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions atrium-api/src/app/bsky/feed/get_author_feed.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions atrium-api/src/app/bsky/feed/get_feed.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/feed/get_feed_generator.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/feed/get_feed_generators.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions atrium-api/src/app/bsky/feed/get_feed_skeleton.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/feed/get_likes.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions atrium-api/src/app/bsky/feed/get_list_feed.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions atrium-api/src/app/bsky/feed/get_post_thread.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/feed/get_posts.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/feed/get_reposted_by.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/feed/get_suggested_feeds.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/feed/get_timeline.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions atrium-api/src/app/bsky/feed/search_posts.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/graph/get_blocks.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/graph/get_followers.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/graph/get_follows.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/graph/get_list.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions atrium-api/src/app/bsky/graph/get_list_blocks.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading