pub struct ModelMetadataInfo {Show 19 fields
pub input_width: usize,
pub input_height: usize,
pub input_frames: usize,
pub label_count: usize,
pub project_name: &'static str,
pub project_owner: &'static str,
pub project_id: usize,
pub deploy_version: usize,
pub sensor: i32,
pub inferencing_engine: usize,
pub interval_ms: usize,
pub frequency: usize,
pub slice_size: usize,
pub has_anomaly: bool,
pub has_object_detection: bool,
pub has_object_tracking: bool,
pub raw_sample_count: usize,
pub raw_samples_per_frame: usize,
pub input_features_count: usize,
}
Fields§
§input_width: usize
§input_height: usize
§input_frames: usize
§label_count: usize
§project_name: &'static str
§project_owner: &'static str
§project_id: usize
§deploy_version: usize
§sensor: i32
§inferencing_engine: usize
§interval_ms: usize
§frequency: usize
§slice_size: usize
§has_anomaly: bool
§has_object_detection: bool
§has_object_tracking: bool
§raw_sample_count: usize
§raw_samples_per_frame: usize
§input_features_count: usize
Trait Implementations§
Source§impl Clone for ModelMetadataInfo
impl Clone for ModelMetadataInfo
Source§fn clone(&self) -> ModelMetadataInfo
fn clone(&self) -> ModelMetadataInfo
Returns a copy 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 moreSource§impl Debug for ModelMetadataInfo
impl Debug for ModelMetadataInfo
Auto Trait Implementations§
impl Freeze for ModelMetadataInfo
impl RefUnwindSafe for ModelMetadataInfo
impl Send for ModelMetadataInfo
impl Sync for ModelMetadataInfo
impl Unpin for ModelMetadataInfo
impl UnwindSafe for ModelMetadataInfo
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
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>
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.