Type Alias dicom_object::ops::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),
}