#[non_exhaustive]pub struct ConnectedHomeSettingsForUpdate { /* private fields */ }Expand description
The label detection settings you want to use in your stream processor. This includes the labels you want the stream processor to detect and the minimum confidence level allowed to label objects.
Implementations
sourceimpl ConnectedHomeSettingsForUpdate
impl ConnectedHomeSettingsForUpdate
sourcepub fn labels(&self) -> Option<&[String]>
pub fn labels(&self) -> Option<&[String]>
Specifies what you want to detect in the video, such as people, packages, or pets. The current valid labels you can include in this list are: "PERSON", "PET", "PACKAGE", and "ALL".
sourcepub fn min_confidence(&self) -> Option<f32>
pub fn min_confidence(&self) -> Option<f32>
The minimum confidence required to label an object in the video.
sourceimpl ConnectedHomeSettingsForUpdate
impl ConnectedHomeSettingsForUpdate
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ConnectedHomeSettingsForUpdate.
Trait Implementations
sourceimpl Clone for ConnectedHomeSettingsForUpdate
impl Clone for ConnectedHomeSettingsForUpdate
sourcefn clone(&self) -> ConnectedHomeSettingsForUpdate
fn clone(&self) -> ConnectedHomeSettingsForUpdate
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl PartialEq<ConnectedHomeSettingsForUpdate> for ConnectedHomeSettingsForUpdate
impl PartialEq<ConnectedHomeSettingsForUpdate> for ConnectedHomeSettingsForUpdate
sourcefn eq(&self, other: &ConnectedHomeSettingsForUpdate) -> bool
fn eq(&self, other: &ConnectedHomeSettingsForUpdate) -> bool
impl StructuralPartialEq for ConnectedHomeSettingsForUpdate
Auto Trait Implementations
impl RefUnwindSafe for ConnectedHomeSettingsForUpdate
impl Send for ConnectedHomeSettingsForUpdate
impl Sync for ConnectedHomeSettingsForUpdate
impl Unpin for ConnectedHomeSettingsForUpdate
impl UnwindSafe for ConnectedHomeSettingsForUpdate
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more