pub struct VariableValidationResult {
pub variable_name: String,
pub group_name: Option<String>,
pub exists: bool,
pub error: Option<String>,
pub source: VariableSource,
}Expand description
Result of validating a single variable reference
Fields§
§variable_name: StringName of the variable being validated
group_name: Option<String>Name of the variable group where it was found (if any)
exists: boolWhether the variable exists in any of the referenced groups
error: Option<String>Optional error message if validation failed
source: VariableSourceSource of the variable (group, inline, or not found)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VariableValidationResult
impl RefUnwindSafe for VariableValidationResult
impl Send for VariableValidationResult
impl Sync for VariableValidationResult
impl Unpin for VariableValidationResult
impl UnwindSafe for VariableValidationResult
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