pub struct ProcessResult {
pub document: GroundedDocument,
pub valid: bool,
pub errors: Vec<SignalValidationError>,
}Expand description
Result of processing input.
Fields§
§document: GroundedDocumentThe document with signals
valid: boolWhether validation passed
errors: Vec<SignalValidationError>Any validation errors
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProcessResult
impl RefUnwindSafe for ProcessResult
impl Send for ProcessResult
impl Sync for ProcessResult
impl Unpin for ProcessResult
impl UnsafeUnpin for ProcessResult
impl UnwindSafe for ProcessResult
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