pub struct OutboundEndpoint {
pub address: String,
pub endpoint_type: Option<String>,
}
Expand description
Represents an outbound endpoint of a device in the Azure Device Registry service.
Fields§
§address: String
The endpoint address to connect to.
endpoint_type: Option<String>
Type of connection used for the messaging endpoint.
Trait Implementations§
Source§impl Clone for OutboundEndpoint
impl Clone for OutboundEndpoint
Source§fn clone(&self) -> OutboundEndpoint
fn clone(&self) -> OutboundEndpoint
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 OutboundEndpoint
impl RefUnwindSafe for OutboundEndpoint
impl Send for OutboundEndpoint
impl Sync for OutboundEndpoint
impl Unpin for OutboundEndpoint
impl UnwindSafe for OutboundEndpoint
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