#[repr(C)]pub struct otSockAddr {
pub mAddress: otIp6Address,
pub mPort: u16,
pub mScopeId: i8,
}Expand description
This structure represents an IPv6 socket address.
Fields§
§mAddress: otIp6Address< An IPv6 address.
mPort: u16< A transport-layer port.
mScopeId: i8< An IPv6 scope identifier.
Trait Implementations§
Source§impl Clone for otSockAddr
impl Clone for otSockAddr
Source§fn clone(&self) -> otSockAddr
fn clone(&self) -> otSockAddr
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 moreimpl Copy for otSockAddr
Auto Trait Implementations§
impl Freeze for otSockAddr
impl RefUnwindSafe for otSockAddr
impl Send for otSockAddr
impl Sync for otSockAddr
impl Unpin for otSockAddr
impl UnwindSafe for otSockAddr
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