dicom_object::ops

Type Alias ApplyResult

Source
pub type ApplyResult<T = (), E = ApplyError> = Result<T, E>;
Expand description

Result type for when applying attribute operations to an object.

Aliased Type§

enum ApplyResult<T = (), E = ApplyError> {
    Ok(T),
    Err(E),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(E)

Contains the error value