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
Currently, a PartitionKey can be created from a single item of a supported type (&str, numbers, etc.) or a tuple of 2 or 3 items of a supported type.
However, as I'm using the SDK a bit, I think it would be useful to support creating one from a Vec<T> (where T is something that can be converted to a partition key value). So, we should add an implementation of From<Vec<PartitionKeyValue>> for PartitionKey.