fastxml 0.8.1

A fast, memory-efficient XML library with XPath and XSD validation support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Fetch result type.

/// Result of a schema fetch operation.
#[derive(Debug, Clone)]
pub struct FetchResult {
    /// The fetched content.
    pub content: Vec<u8>,
    /// The final URL after any redirects.
    pub final_url: String,
    /// Whether a redirect occurred.
    pub redirected: bool,
}