pub struct CompileTimeValidationResult {
pub valid: bool,
pub errors: Vec<CompileTimeError>,
pub warnings: Vec<String>,
pub sql_constraint: Option<String>,
}Expand description
Compile-time validation result
Fields§
§valid: bool§errors: Vec<CompileTimeError>§warnings: Vec<String>§sql_constraint: Option<String>Trait Implementations§
Source§impl Clone for CompileTimeValidationResult
impl Clone for CompileTimeValidationResult
Source§fn clone(&self) -> CompileTimeValidationResult
fn clone(&self) -> CompileTimeValidationResult
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 CompileTimeValidationResult
impl RefUnwindSafe for CompileTimeValidationResult
impl Send for CompileTimeValidationResult
impl Sync for CompileTimeValidationResult
impl Unpin for CompileTimeValidationResult
impl UnsafeUnpin for CompileTimeValidationResult
impl UnwindSafe for CompileTimeValidationResult
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