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
The client half of the types provided by Brokaw more or less boils down to two things:
Command encoding (implemented via ToStringEncode)
Response decoding (implemented via TryFrom<RawResponse>)
One could extend Brokaw to support server-side connections by implementing (1) command decoding and (2) response encoding.
It might be worthwhile to reconsider the use of ToString as a trait for command encoding as it prevents Brokaw from supporting non UTF-8 messages (tracked in #26)
The text was updated successfully, but these errors were encountered:
The client half of the types provided by Brokaw more or less boils down to two things:
ToString
Encode
)TryFrom<RawResponse>
)One could extend Brokaw to support server-side connections by implementing (1) command decoding and (2) response encoding.
It might be worthwhile to reconsider the use of
ToString
as a trait for command encoding as it prevents Brokaw from supporting non UTF-8 messages (tracked in #26)The text was updated successfully, but these errors were encountered: