[][src]Struct rusoto_iotevents_data::DetectorSummary

pub struct DetectorSummary {
    pub creation_time: Option<f64>,
    pub detector_model_name: Option<String>,
    pub detector_model_version: Option<String>,
    pub key_value: Option<String>,
    pub last_update_time: Option<f64>,
    pub state: Option<DetectorStateSummary>,
}

Information about the detector (instance).

Fields

creation_time: Option<f64>

The time the detector (instance) was created.

detector_model_name: Option<String>

The name of the detector model that created this detector (instance).

detector_model_version: Option<String>

The version of the detector model that created this detector (instance).

key_value: Option<String>

The value of the key (identifying the device or system) that caused the creation of this detector (instance).

last_update_time: Option<f64>

The time the detector (instance) was last updated.

state: Option<DetectorStateSummary>

The current state of the detector (instance).

Trait Implementations

impl Clone for DetectorSummary[src]

impl Debug for DetectorSummary[src]

impl Default for DetectorSummary[src]

impl<'de> Deserialize<'de> for DetectorSummary[src]

impl PartialEq<DetectorSummary> for DetectorSummary[src]

impl StructuralPartialEq for DetectorSummary[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.