[][src]Struct goose::goose::GooseTask

pub struct GooseTask {
    pub tasks_index: usize,
    pub name: String,
    pub weight: usize,
    pub sequence: usize,
    pub on_start: bool,
    pub on_stop: bool,
    pub function: Option<fn(_: &mut GooseClient)>,
}

An individual task within a task set

Fields

tasks_index: usizename: Stringweight: usizesequence: usizeon_start: boolon_stop: boolfunction: Option<fn(_: &mut GooseClient)>

Methods

impl GooseTask[src]

pub fn new() -> Self[src]

pub fn named(name: &str) -> Self[src]

pub fn set_on_start(self) -> Self[src]

pub fn set_on_stop(self) -> Self[src]

pub fn set_name(self, name: &str) -> Self[src]

pub fn set_weight(self, weight: usize) -> Self[src]

pub fn set_sequence(self, sequence: usize) -> Self[src]

pub fn set_function(self, function: fn(_: &mut GooseClient)) -> Self[src]

Trait Implementations

impl Clone for GooseTask[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> 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>,