pub struct XIncludeResult {
pub inclusions: usize,
pub errors: Vec<XIncludeError>,
}Expand description
Result of XInclude processing.
Contains the processed document with all resolvable includes expanded, along with statistics and any errors encountered.
Fields§
§inclusions: usizeNumber of includes that were successfully processed.
errors: Vec<XIncludeError>Errors encountered during processing.
Each error corresponds to an xi:include element that could not
be resolved and had no usable xi:fallback.
Auto Trait Implementations§
impl Freeze for XIncludeResult
impl RefUnwindSafe for XIncludeResult
impl Send for XIncludeResult
impl Sync for XIncludeResult
impl Unpin for XIncludeResult
impl UnsafeUnpin for XIncludeResult
impl UnwindSafe for XIncludeResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more