Type Alias uniquote::Result

source ·
pub type Result = Result<(), Error>;
Expand description

The type returned by Quote::escape.

This type is used similarly to fmt::Result in the standard library.

Aliased Type§

enum Result {
    Ok(()),
    Err(Error),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(Error)

Contains the error value