pub struct ValidationOptions {
pub minimum_severity: Severity,
pub sort_results: bool,
pub entry_shape_names: Vec<String>,
pub engine: EngineOptions,
}Expand description
Controls which retained findings make a validation outcome non-conforming.
Fields§
§minimum_severity: SeverityLowest severity that makes conforms false. Defaults to sh:Info, so
all findings fail validation as they did before severity was retained.
sort_results: boolWhether to sort violations by severity, focus node, and statement.
Defaults to true for deterministic output.
entry_shape_names: Vec<String>Optional set of named shapes to use as validation entry points. When empty, every target-bearing shape is validated. Dependencies reachable from the selected shapes remain available in the arena and are evaluated normally when referenced by the selected entries.
engine: EngineOptionsFeature-handling policy (see EngineOptions).
Trait Implementations§
Source§impl Clone for ValidationOptions
impl Clone for ValidationOptions
Source§fn clone(&self) -> ValidationOptions
fn clone(&self) -> ValidationOptions
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 moreSource§impl Debug for ValidationOptions
impl Debug for ValidationOptions
Source§impl Default for ValidationOptions
impl Default for ValidationOptions
impl Eq for ValidationOptions
Source§impl PartialEq for ValidationOptions
impl PartialEq for ValidationOptions
impl StructuralPartialEq for ValidationOptions
Auto Trait Implementations§
impl Freeze for ValidationOptions
impl RefUnwindSafe for ValidationOptions
impl Send for ValidationOptions
impl Sync for ValidationOptions
impl Unpin for ValidationOptions
impl UnsafeUnpin for ValidationOptions
impl UnwindSafe for ValidationOptions
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.