pub struct RelationshipValidation {
pub valid: bool,
pub errors: Vec<String>,
pub warnings: Vec<String>,
}Expand description
Relationship validation result.
Fields§
§valid: boolWhether the relationship is valid.
errors: Vec<String>Validation errors.
warnings: Vec<String>Validation warnings.
Implementations§
Source§impl RelationshipValidation
impl RelationshipValidation
Trait Implementations§
Source§impl Clone for RelationshipValidation
impl Clone for RelationshipValidation
Source§fn clone(&self) -> RelationshipValidation
fn clone(&self) -> RelationshipValidation
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 RelationshipValidation
impl RefUnwindSafe for RelationshipValidation
impl Send for RelationshipValidation
impl Sync for RelationshipValidation
impl Unpin for RelationshipValidation
impl UnwindSafe for RelationshipValidation
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