pub struct DiscoveredAsset {
Show 22 fields pub asset_type_refs: Vec<String>, pub attributes: HashMap<String, String>, pub datasets: Vec<DiscoveredDataset>, pub default_datasets_configuration: Option<String>, pub default_datasets_destinations: Vec<DatasetDestination>, pub default_events_configuration: Option<String>, pub default_events_destinations: Vec<EventStreamDestination>, pub default_management_groups_configuration: Option<String>, pub default_streams_configuration: Option<String>, pub default_streams_destinations: Vec<EventStreamDestination>, pub device_ref: DeviceRef, pub documentation_uri: Option<String>, pub events: Vec<DiscoveredEvent>, pub hardware_revision: Option<String>, pub management_groups: Vec<DiscoveredManagementGroup>, pub manufacturer: Option<String>, pub manufacturer_uri: Option<String>, pub model: Option<String>, pub product_code: Option<String>, pub serial_number: Option<String>, pub software_revision: Option<String>, pub streams: Vec<DiscoveredStream>,
}
Expand description

Represents a Discovered Asset in the Azure Device Registry service.

Fields§

§asset_type_refs: Vec<String>

URIs or type definition IDs for the asset type.

§attributes: HashMap<String, String>

A set of key-value pairs that contain custom attributes.

§datasets: Vec<DiscoveredDataset>

Array of datasets that are part of the asset. Each data set spec describes the data points that make up the set.

§default_datasets_configuration: Option<String>

Stringified JSON that contains connector-specific default configuration for all datasets. Each dataset can have its own configuration that overrides the default settings here.

§default_datasets_destinations: Vec<DatasetDestination>

Default destinations for a dataset.

§default_events_configuration: Option<String>

Stringified JSON that contains connector-specific default configuration for all events. Each event can have its own configuration that overrides the default settings here.

§default_events_destinations: Vec<EventStreamDestination>

Default destinations for an event.

§default_management_groups_configuration: Option<String>

Stringified JSON that contains connector-specific default configuration for all management groups. Each management group can have its own configuration that overrides the default settings here.

§default_streams_configuration: Option<String>

Stringified JSON that contains connector-specific default configuration for all streams. Each stream can have its own configuration that overrides the default settings here.

§default_streams_destinations: Vec<EventStreamDestination>

Default destinations for a stream.

§device_ref: DeviceRef

Reference to the device that provides data for this asset. Must provide device name & endpoint on the device to use.

§documentation_uri: Option<String>

Asset documentation reference.

§events: Vec<DiscoveredEvent>

Array of events that are part of the asset. Each event can have per-event configuration.

§hardware_revision: Option<String>

Asset hardware revision number.

§management_groups: Vec<DiscoveredManagementGroup>

Array of management groups that are part of the asset. Each management group can have a per-group configuration.

§manufacturer: Option<String>

The name of the manufacturer.

§manufacturer_uri: Option<String>

Asset manufacturer URI.

§model: Option<String>

The model of the asset.

§product_code: Option<String>

The product code of the asset.

§serial_number: Option<String>

The revision number of the software.

§software_revision: Option<String>

Asset software revision number.

§streams: Vec<DiscoveredStream>

Array of streams that are part of the asset. Each stream can have per-stream configuration.

Trait Implementations§

Source§

impl Clone for DiscoveredAsset

Source§

fn clone(&self) -> DiscoveredAsset

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DiscoveredAsset

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V