pub struct OutboundEndpoints {
pub assigned: HashMap<String, OutboundEndpoint>,
pub unassigned: HashMap<String, OutboundEndpoint>,
}
Expand description
Represents the outbound endpoints of a device in the Azure Device Registry service.
Fields§
§assigned: HashMap<String, OutboundEndpoint>
Device messaging endpoint model.
unassigned: HashMap<String, OutboundEndpoint>
Device messaging endpoint model.
Trait Implementations§
Source§impl Clone for OutboundEndpoints
impl Clone for OutboundEndpoints
Source§fn clone(&self) -> OutboundEndpoints
fn clone(&self) -> OutboundEndpoints
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 OutboundEndpoints
impl RefUnwindSafe for OutboundEndpoints
impl Send for OutboundEndpoints
impl Sync for OutboundEndpoints
impl Unpin for OutboundEndpoints
impl UnwindSafe for OutboundEndpoints
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