SinkResult

Type Alias SinkResult 

Source
pub type SinkResult<T> = Result<T, SinkError>;

Aliased Type§

pub enum SinkResult<T> {
    Ok(T),
    Err(StructError<SinkReason>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(StructError<SinkReason>)

Contains the error value