Type Alias tk::InterpResult

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

Error from Tcl interpreter.

Aliased Type§

enum InterpResult<T> {
    Ok(T),
    Err(InterpError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(InterpError)

Contains the error value