pub type MetadataResult<T> = Result<T, MetadataError>;Expand description
Result type used by explicit Metadata operations that report failure
reasons instead of collapsing them into None.
Aliased Type§
pub enum MetadataResult<T> {
Ok(T),
Err(MetadataError),
}