pub struct VisionDemoResult {Show 18 fields
pub width: u32,
pub height: u32,
pub seed: u64,
pub split: String,
pub model_hash: String,
pub media_hash: String,
pub detections: Vec<OverlayBoxDto>,
pub n_gt: usize,
pub n_pred: usize,
pub quins_written: usize,
pub shacl_ok: bool,
pub shacl_observations: u32,
pub shacl_human: u32,
pub overlay_data_url: String,
pub note: String,
pub backend: String,
pub is_reference_backend: bool,
pub synthetic_match_acc: Option<f32>,
}Fields§
§width: u32§height: u32§seed: u64§split: String§model_hash: String§media_hash: String§detections: Vec<OverlayBoxDto>§n_gt: usize§n_pred: usize§quins_written: usize§shacl_ok: bool§shacl_observations: u32§shacl_human: u32§overlay_data_url: Stringdata:image/bmp;base64,… with boxes drawn
note: String§backend: Stringreference | production_weights
is_reference_backend: bool§synthetic_match_acc: Option<f32>Trait Implementations§
Source§impl Clone for VisionDemoResult
impl Clone for VisionDemoResult
Source§fn clone(&self) -> VisionDemoResult
fn clone(&self) -> VisionDemoResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VisionDemoResult
impl Debug for VisionDemoResult
Auto Trait Implementations§
impl Freeze for VisionDemoResult
impl RefUnwindSafe for VisionDemoResult
impl Send for VisionDemoResult
impl Sync for VisionDemoResult
impl Unpin for VisionDemoResult
impl UnsafeUnpin for VisionDemoResult
impl UnwindSafe for VisionDemoResult
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more