xee-testrunner 0.1.6

Conformance testing for Xee's XPath and XSLT implementations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::path::PathBuf;

use crate::metadata::Metadata;

#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) struct Resource {
    metadata: Metadata,
    file: Option<PathBuf>,
    uri: String,
    media_type: Option<String>,
    encoding: Option<String>,
}