Type Alias Void

Source
pub type Void = Res<()>;
Expand description

A helper type for void results.

Aliased Type§

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

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(Error)

Contains the error value