Struct ruroonga_client::ResultParser [] [src]

pub struct ResultParser { /* fields omitted */ }

Methods

impl ResultParser
[src]

ResultParser

Groonga returns following array json:

success response: [[status, start_time, elapsed_time], [[[matched_columns], [Array([column1, type1], ...)], [Array([result1, result2, ...])]]]]

error response: [[status, start_time, elapsed_time, error_information, ...]]

Get raw response result.

Return header elements in response.

Panics

Panics if response json is corrupted.

Return status in response.

Panics

Panics if response json is corrupted.

Return start time in response.

Panics

Panics if response json is corrupted.

Return elapsed time in response.

Panics

Panics if response json is corrupted.

Return a number of matched columns in response.

Get result in response.

If request succeeded, it can get matched result array. Otherwise, one can get error messages.

Panics

Panics if response json is corrupted.

Convert to Rows type and return its type values.

Trait Implementations

impl Clone for ResultParser
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ResultParser
[src]

Formats the value using the given formatter.