[][src]Struct arangoq::arango_response::ArangoStats

pub struct ArangoStats {
    pub writes_executed: usize,
    pub writes_ignored: usize,
    pub scanned_full: usize,
    pub scanned_index: usize,
    pub filtered: usize,
    pub http_requests: usize,
    pub execution_time: f64,
    pub full_count: usize,
    pub peak_memory_usage: usize,
}

Fields

writes_executed: usize

The total number of data-modification operations successfully executed.

writes_ignored: usize

The total number of data-modification operations that were unsuccessful, but have been ignored because of query option ignoreErrors.

scanned_full: usize

The total number of documents iterated over when scanning a collection without an index.

scanned_index: usize

The total number of documents iterated over when scanning a collection using an index.

filtered: usize

The total number of documents that were removed after executing a filter condition.

http_requests: usizeexecution_time: f64full_count: usize

The total number of documents that matched the search condition.

peak_memory_usage: usize

The maximum memory usage of the query while it was running.

Trait Implementations

impl Debug for ArangoStats[src]

impl Default for ArangoStats[src]

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

impl PartialEq<ArangoStats> for ArangoStats[src]

impl Serialize for ArangoStats[src]

impl StructuralPartialEq for ArangoStats[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.