[][src]Struct cortex::backend::RerunOptions

pub struct RerunOptions<'a> {
    pub corpus: &'a Corpus,
    pub service: &'a Service,
    pub severity_opt: Option<String>,
    pub category_opt: Option<String>,
    pub what_opt: Option<String>,
    pub owner_opt: Option<String>,
    pub description_opt: Option<String>,
}

Options container for relevant fields in requesting a (corpus, service) rerun

Fields

corpus: &'a Corpus

corpus to rerun

service: &'a Service

service to rerun

severity_opt: Option<String>

optionally, severity level filter

category_opt: Option<String>

optionally, category level filter

what_opt: Option<String>

optionally, what level filter

owner_opt: Option<String>

optionally, owner of the rerun (default is "admin")

description_opt: Option<String>

optionally, description of the rerun (default is "rerun")

Auto Trait Implementations

impl<'a> RefUnwindSafe for RerunOptions<'a>

impl<'a> Send for RerunOptions<'a>

impl<'a> Sync for RerunOptions<'a>

impl<'a> Unpin for RerunOptions<'a>

impl<'a> UnwindSafe for RerunOptions<'a>

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<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, 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>,