@inlinable
    public static func zrank<Value: RESPValueConvertible>(of element: Value, in key: RedisKey) -> RedisCommand<Int?> {
        let args: [RESPValue] = [
            .init(from: key),
            element.convertedToRESPValue()