ReloadResult

Type Alias ReloadResult 

Source
pub type ReloadResult<T, V, S = &'static str> = Result<T, ReloaderError<V, S>>;
Expand description

Type alias for a commonly used Result type

Aliased Type§

pub enum ReloadResult<T, V, S = &'static str> {
    Ok(T),
    Err(ReloaderError<V, S>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ReloaderError<V, S>)

Contains the error value