Type Alias css_inline::Result

source ·
pub type Result<T> = Result<T, InlineError>;
Expand description

A specialized Result type for CSS inlining operations.

Aliased Type§

enum Result<T> {
    Ok(T),
    Err(InlineError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(InlineError)

Contains the error value