pub struct ReferenceResult {
pub valid: bool,
pub event_count: usize,
pub run_root: String,
pub error: Option<String>,
}Expand description
Result from the reference (non-streaming) verifier.
Fields§
§valid: bool§event_count: usize§run_root: String§error: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReferenceResult
impl RefUnwindSafe for ReferenceResult
impl Send for ReferenceResult
impl Sync for ReferenceResult
impl Unpin for ReferenceResult
impl UnwindSafe for ReferenceResult
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