pub struct DiscoveredDeviceEndpoints {
pub inbound: HashMap<String, DiscoveredInboundEndpoint>,
pub outbound: Option<DiscoveredOutboundEndpoints>,
}
Expand description
Represents the endpoints of a discovered device in the Azure Device Registry service.
Fields§
§inbound: HashMap<String, DiscoveredInboundEndpoint>
Set of endpoints to connect to the device.
outbound: Option<DiscoveredOutboundEndpoints>
Property bag contains the device’s outbound endpoints
Trait Implementations§
Source§impl Clone for DiscoveredDeviceEndpoints
impl Clone for DiscoveredDeviceEndpoints
Source§fn clone(&self) -> DiscoveredDeviceEndpoints
fn clone(&self) -> DiscoveredDeviceEndpoints
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 moreAuto Trait Implementations§
impl Freeze for DiscoveredDeviceEndpoints
impl RefUnwindSafe for DiscoveredDeviceEndpoints
impl Send for DiscoveredDeviceEndpoints
impl Sync for DiscoveredDeviceEndpoints
impl Unpin for DiscoveredDeviceEndpoints
impl UnwindSafe for DiscoveredDeviceEndpoints
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