metadata_gen

Type Alias MetadataResult

Source
pub type MetadataResult = Result<(MetadataMap, Keywords, MetaTagGroups), MetadataError>;
Expand description

Type alias for the result of metadata extraction and processing.

Aliased Type§

enum MetadataResult {
    Ok((HashMap<String, String>, Vec<String>, MetaTagGroups)),
    Err(MetadataError),
}

Variants§

§1.0.0

Ok((HashMap<String, String>, Vec<String>, MetaTagGroups))

Contains the success value

§1.0.0

Err(MetadataError)

Contains the error value