Skip to main content

R

Type Alias R 

Source
type R<T> = Result<T, String>;

Aliased Type§

enum R<T> {
    Ok(T),
    Err(String),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(String)

Contains the error value