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
Especially since binary support was introduced, it might be needed to tag messages and filter messages by tags when printing them.
The interface would be along the lines of:
tr1pctl write -t foo
tr1pctl ls -t foo
Internally, this would need a breaking change in the file format to introduce . Since the tag is optional, this would map to an Option<T>, with None being a length of 0. If the tag is exposed as Vec<u8> or String still needs to be decided.
The text was updated successfully, but these errors were encountered:
Especially since binary support was introduced, it might be needed to tag messages and filter messages by tags when printing them.
The interface would be along the lines of:
Internally, this would need a breaking change in the file format to introduce . Since the tag is optional, this would map to an
Option<T>
, withNone
being a length of 0. If the tag is exposed asVec<u8>
orString
still needs to be decided.The text was updated successfully, but these errors were encountered: