pub struct DeviceEndpoints {
pub inbound: HashMap<String, InboundEndpoint>,
pub outbound: Option<OutboundEndpoints>,
}
Expand description
Represents the endpoints of a device in the Azure Device Registry service.
Fields§
§inbound: HashMap<String, InboundEndpoint>
The ‘inbound’ Field.
outbound: Option<OutboundEndpoints>
Set of endpoints for device to connect to.
Trait Implementations§
Source§impl Clone for DeviceEndpoints
impl Clone for DeviceEndpoints
Source§fn clone(&self) -> DeviceEndpoints
fn clone(&self) -> DeviceEndpoints
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 DeviceEndpoints
impl RefUnwindSafe for DeviceEndpoints
impl Send for DeviceEndpoints
impl Sync for DeviceEndpoints
impl Unpin for DeviceEndpoints
impl UnwindSafe for DeviceEndpoints
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