Struct rincon_session::client::CursorStatistics [] [src]

pub struct CursorStatistics { /* fields omitted */ }

Holds statistics information about the query execution.

Methods

impl CursorStatistics
[src]

[src]

Returns the time the execution of the query took.

[src]

Returns the number of results that have been filtered out.

[src]

Returns the total number of results that have been found.

This property is only available if the option CursorOptions.full_count parameter has been set to true for this query.

[src]

Returns the number of http request.

[src]

Returns the number of full scans.

[src]

Returns the number of index scans.

[src]

Returns the number of write operation that have been executed.

[src]

Returns the number of write operations that have been ignored.

Trait Implementations

impl<'de> Deserialize<'de> for CursorStatistics
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Clone for CursorStatistics
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CursorStatistics
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations