You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Additionally, it’d be helpful to add an enum for common sub-values, e.g.
extensionNIOIMAP{publicenum Capability:Equatable{case auth(Auth)…enumAuth:Equatable{case aToken
case plain
case pToken
case weToken
case wsToken
case other(String)}}}
The text was updated successfully, but these errors were encountered:
Sounds like a good idea to me. To promote API stability we'll likely convert this to a struct but will provide convenience static functions for spec-defined capabilities.
This would reduce the need to use the
.other
case.Here’s a list of commonly used capabilities:
Additionally, it’d be helpful to add an
enum
for common sub-values, e.g.The text was updated successfully, but these errors were encountered: