[][src]Struct cortex::reports::AggregateReport

pub struct AggregateReport {
    pub report_name: Option<String>,
    pub task_count: i64,
    pub message_count: i64,
}

The return struct of aggregate reports targeting task and log message counts

Fields

report_name: Option<String>

the category, per LaTeXML convention

task_count: i64

number of tasks with messages under this category (in implied severity - strictly)

message_count: i64

number of messages under this category (in implied severity - strictly)

Trait Implementations

impl Clone for AggregateReport[src]

impl Debug for AggregateReport[src]

impl Eq for AggregateReport[src]

impl PartialEq<AggregateReport> for AggregateReport[src]

impl<__DB: Backend> QueryableByName<__DB> for AggregateReport where
    Option<String>: FromSql<SqlTypeOf<report_name>, __DB>,
    i64: FromSql<SqlTypeOf<task_count>, __DB>,
    i64: FromSql<SqlTypeOf<message_count>, __DB>, 
[src]

impl StructuralEq for AggregateReport[src]

impl StructuralPartialEq for AggregateReport[src]

Auto Trait Implementations

impl RefUnwindSafe for AggregateReport

impl Send for AggregateReport

impl Sync for AggregateReport

impl Unpin for AggregateReport

impl UnwindSafe for AggregateReport

Blanket Implementations

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

impl<T, I> AsResult<T, I> for T where
    I: Input, 

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> IntoCollection<T> for T

impl<T> IntoSql for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,