Struct libc::sockaddr_in
source · [−]#[repr(C)]pub struct sockaddr_in {
pub sin_family: sa_family_t,
pub sin_port: in_port_t,
pub sin_addr: in_addr,
pub sin_zero: [u8; 8],
}
Fields
sin_family: sa_family_t
sin_port: in_port_t
sin_addr: in_addr
sin_zero: [u8; 8]
Trait Implementations
sourceimpl Clone for sockaddr_in
impl Clone for sockaddr_in
sourcefn clone(&self) -> sockaddr_in
fn clone(&self) -> sockaddr_in
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for sockaddr_in
impl Debug for sockaddr_in
sourceimpl Hash for sockaddr_in
impl Hash for sockaddr_in
sourceimpl PartialEq<sockaddr_in> for sockaddr_in
impl PartialEq<sockaddr_in> for sockaddr_in
sourcefn eq(&self, other: &sockaddr_in) -> bool
fn eq(&self, other: &sockaddr_in) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &sockaddr_in) -> bool
fn ne(&self, other: &sockaddr_in) -> bool
This method tests for !=
.
impl Copy for sockaddr_in
impl Eq for sockaddr_in
impl StructuralEq for sockaddr_in
impl StructuralPartialEq for sockaddr_in
Auto Trait Implementations
impl RefUnwindSafe for sockaddr_in
impl Send for sockaddr_in
impl Sync for sockaddr_in
impl Unpin for sockaddr_in
impl UnwindSafe for sockaddr_in
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more