pub struct Stat {
    pub name: String,
    pub num_blocks: u64,
    pub num_events: u64,
    pub num_fields: u32,
    pub input_bytes: u64,
    pub input_bytes_human: String,
    pub compressed_bytes: u64,
    pub compressed_bytes_human: String,
    pub min_time: Option<DateTime<Utc>>,
    pub max_time: Option<DateTime<Utc>>,
    pub created_by: Option<String>,
    pub created_at: DateTime<Utc>,
}
Expand description

Details of the information stored in a dataset.

Fields

name: String

The unique name of the dataset.

num_blocks: u64

The number of blocks of the dataset.

num_events: u64

The number of events of the dataset.

num_fields: u32

The number of fields of the dataset.

input_bytes: u64

The amount of data stored in the dataset.

input_bytes_human: String

The amount of data stored in the dataset formatted in a human readable format.

compressed_bytes: u64

The amount of compressed data stored in the dataset.

compressed_bytes_human: String

The amount of compressed data stored in the dataset formatted in a human readable format.

min_time: Option<DateTime<Utc>>

The time of the oldest event stored in the dataset.

max_time: Option<DateTime<Utc>>

The time of the newest event stored in the dataset.

created_by: Option<String>

The ID of the user who created the dataset.

created_at: DateTime<Utc>

The time the dataset was created at.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more