pub struct SchematronPhase {
pub id: String,
pub active_patterns: Vec<String>,
}Expand description
A Schematron phase — selects a subset of patterns for validation.
§UPSTREAM-PARITY
Mirrors libxml2’s phase representation.
Fields§
§id: StringPhase ID.
active_patterns: Vec<String>Active pattern IDs referenced by this phase.
Trait Implementations§
Source§impl Clone for SchematronPhase
impl Clone for SchematronPhase
Source§fn clone(&self) -> SchematronPhase
fn clone(&self) -> SchematronPhase
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SchematronPhase
impl RefUnwindSafe for SchematronPhase
impl Send for SchematronPhase
impl Sync for SchematronPhase
impl Unpin for SchematronPhase
impl UnsafeUnpin for SchematronPhase
impl UnwindSafe for SchematronPhase
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