pub struct ValidationConfig {
pub enable_python_validation: bool,
pub enable_rez_validation: bool,
pub max_issues_per_file: usize,
pub include_style_warnings: bool,
pub include_info_messages: bool,
}Expand description
Configuration for the validation engine.
Fields§
§enable_python_validation: boolWhether to enable Python syntax validation
enable_rez_validation: boolWhether to enable Rez-specific validation
max_issues_per_file: usizeMaximum number of issues to report per file
include_style_warnings: boolWhether to include style warnings
include_info_messages: boolWhether to include informational messages
Trait Implementations§
Source§impl Clone for ValidationConfig
impl Clone for ValidationConfig
Source§fn clone(&self) -> ValidationConfig
fn clone(&self) -> ValidationConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 ValidationConfig
impl Debug for ValidationConfig
Auto Trait Implementations§
impl Freeze for ValidationConfig
impl RefUnwindSafe for ValidationConfig
impl Send for ValidationConfig
impl Sync for ValidationConfig
impl Unpin for ValidationConfig
impl UnsafeUnpin for ValidationConfig
impl UnwindSafe for ValidationConfig
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