Skip to main content

Read

Type Alias Read 

Source
pub type Read = Result<Option<Layer>, Error>;
Expand description

A layer, or nothing, or a reason neither could be established.

Aliased Type§

pub enum Read {
    Ok(Option<Layer>),
    Err(Error),
}

Variants§

§1.0.0

Ok(Option<Layer>)

Contains the success value

§1.0.0

Err(Error)

Contains the error value