Skip to main content

ActionResult

Type Alias ActionResult 

Source
pub type ActionResult = Result<Value, String>;

Aliased Type§

pub enum ActionResult {
    Ok(Value),
    Err(String),
}

Variants§

§1.0.0

Ok(Value)

Contains the success value

§1.0.0

Err(String)

Contains the error value