pub struct ValidationPrediction {
pub likely_valid: bool,
pub confidence: f32,
pub estimated_time_ms: u64,
}Expand description
Validation prediction result
Fields§
§likely_valid: boolLikely to be valid?
confidence: f32Confidence (0.0 - 1.0)
estimated_time_ms: u64Estimated validation time in milliseconds
Trait Implementations§
Source§impl Clone for ValidationPrediction
impl Clone for ValidationPrediction
Source§fn clone(&self) -> ValidationPrediction
fn clone(&self) -> ValidationPrediction
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 ValidationPrediction
impl RefUnwindSafe for ValidationPrediction
impl Send for ValidationPrediction
impl Sync for ValidationPrediction
impl Unpin for ValidationPrediction
impl UnsafeUnpin for ValidationPrediction
impl UnwindSafe for ValidationPrediction
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