pub struct IdConfigValidation {
pub valid: bool,
pub error: Option<String>,
pub warning: Option<String>,
pub can_migrate: bool,
pub affected_count: usize,
}Expand description
Result of validating ID configuration changes
Fields§
§valid: boolWhether the change is valid
error: Option<String>Error message if invalid
warning: Option<String>Warning message (change is valid but has implications)
can_migrate: boolWhether migration is possible
affected_count: usizeNumber of requirements that would be affected by migration
Trait Implementations§
Source§impl Clone for IdConfigValidation
impl Clone for IdConfigValidation
Source§fn clone(&self) -> IdConfigValidation
fn clone(&self) -> IdConfigValidation
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 moreAuto Trait Implementations§
impl Freeze for IdConfigValidation
impl RefUnwindSafe for IdConfigValidation
impl Send for IdConfigValidation
impl Sync for IdConfigValidation
impl Unpin for IdConfigValidation
impl UnsafeUnpin for IdConfigValidation
impl UnwindSafe for IdConfigValidation
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