[][src]Struct goose::metrics::GooseRawTask

pub struct GooseRawTask {
    pub elapsed: u64,
    pub taskset_index: usize,
    pub task_index: usize,
    pub name: String,
    pub run_time: u64,
    pub success: bool,
    pub user: usize,
}

Fields

elapsed: u64

How many milliseconds the load test has been running.

taskset_index: usize

An index into GooseAttack.task_sets, indicating which task set this is.

task_index: usize

An index into GooseTaskSet.task, indicating which task this is.

name: String

The optional name of the task.

run_time: u64

How long task ran.

success: bool

Whether or not the request was successful.

user: usize

Which GooseUser thread processed the request.

Implementations

impl GooseRawTask[src]

pub fn new(
    elapsed: u128,
    taskset_index: usize,
    task_index: usize,
    name: String,
    user: usize
) -> Self
[src]

pub fn set_time(&mut self, time: u128, success: bool)[src]

Trait Implementations

impl Clone for GooseRawTask[src]

impl Debug for GooseRawTask[src]

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

impl Serialize for GooseRawTask[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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,