Closed
Description
The messy enum problem mostly applies to enums in the apub crate. For example, SiteOrCommunityOrUser
could become Either<ApubSite, Either<ApubCommunity, ApubUser>>
. In this case, the activitypub_federation crate would have to implement its traits for Either
.
Should be done after #5496 to avoid merge conflicts.