Type Alias sailfish::runtime::RenderResult

source ·
pub type RenderResult = Result<String, RenderError>;
Expand description

Result type returned from TemplateOnce::render_once method

Aliased Type§

enum RenderResult {
    Ok(String),
    Err(RenderError),
}

Variants§

§1.0.0

Ok(String)

Contains the success value

§1.0.0

Err(RenderError)

Contains the error value