pub struct SocketAddr { /* private fields */ }Expand description
Implementations
impl SocketAddr
source
impl SocketAddr
sourcepub fn from_pathname<P>(path: P) -> Result<SocketAddr> where
P: AsRef<Path>,
1.61.0 · source
pub fn from_pathname<P>(path: P) -> Result<SocketAddr> where
P: AsRef<Path>,
1.61.0 · sourceConstructs a SockAddr with the family AF_UNIX and the provided path.
Errors
Returns an error if the path is longer than SUN_LEN or if it contains
NULL bytes.
Examples
use std::os::unix::net::SocketAddr;
use std::path::Path;
let address = SocketAddr::from_pathname("/path/to/socket")?;
assert_eq!(address.as_pathname(), Some(Path::new("/path/to/socket")));RunCreating a SocketAddr with a NULL byte results in an error.
use std::os::unix::net::SocketAddr;
assert!(SocketAddr::from_pathname("/path/with/\0/bytes").is_err());Runpub fn is_unnamed(&self) -> bool
source
pub fn is_unnamed(&self) -> bool
sourceReturns true if the address is unnamed.
Examples
A named address:
use std::os::unix::net::UnixListener;
fn main() -> std::io::Result<()> {
let socket = UnixListener::bind("/tmp/sock")?;
let addr = socket.local_addr().expect("Couldn't get local address");
assert_eq!(addr.is_unnamed(), false);
Ok(())
}RunAn unnamed address:
use std::os::unix::net::UnixDatagram;
fn main() -> std::io::Result<()> {
let socket = UnixDatagram::unbound()?;
let addr = socket.local_addr().expect("Couldn't get local address");
assert_eq!(addr.is_unnamed(), true);
Ok(())
}Runpub fn as_pathname(&self) -> Option<&Path>
source
pub fn as_pathname(&self) -> Option<&Path>
sourceReturns the contents of this address if it is a pathname address.
Examples
With a pathname:
use std::os::unix::net::UnixListener;
use std::path::Path;
fn main() -> std::io::Result<()> {
let socket = UnixListener::bind("/tmp/sock")?;
let addr = socket.local_addr().expect("Couldn't get local address");
assert_eq!(addr.as_pathname(), Some(Path::new("/tmp/sock")));
Ok(())
}RunWithout a pathname:
use std::os::unix::net::UnixDatagram;
fn main() -> std::io::Result<()> {
let socket = UnixDatagram::unbound()?;
let addr = socket.local_addr().expect("Couldn't get local address");
assert_eq!(addr.as_pathname(), None);
Ok(())
}Runpub fn as_abstract_namespace(&self) -> Option<&[u8]>
source Available on Android or Linux only.
pub fn as_abstract_namespace(&self) -> Option<&[u8]>
sourceReturns the contents of this address if it is an abstract namespace without the leading null byte.
Examples
#![feature(unix_socket_abstract)]
use std::os::unix::net::{UnixListener, SocketAddr};
fn main() -> std::io::Result<()> {
let namespace = b"hidden";
let namespace_addr = SocketAddr::from_abstract_namespace(&namespace[..])?;
let socket = UnixListener::bind_addr(&namespace_addr)?;
let local_addr = socket.local_addr().expect("Couldn't get local address");
assert_eq!(local_addr.as_abstract_namespace(), Some(&namespace[..]));
Ok(())
}Runpub fn from_abstract_namespace(namespace: &[u8]) -> Result<SocketAddr>
source Available on Android or Linux only.
pub fn from_abstract_namespace(namespace: &[u8]) -> Result<SocketAddr>
sourceCreates an abstract domain socket address from a namespace
An abstract address does not create a file unlike traditional path-based Unix sockets. The advantage of this is that the address will disappear when the socket bound to it is closed, so no filesystem clean up is required.
The leading null byte for the abstract namespace is automatically added.
This is a Linux-specific extension. See more at unix(7).
Errors
This will return an error if the given namespace is too long
Examples
#![feature(unix_socket_abstract)]
use std::os::unix::net::{UnixListener, SocketAddr};
fn main() -> std::io::Result<()> {
let addr = SocketAddr::from_abstract_namespace(b"hidden")?;
let listener = match UnixListener::bind_addr(&addr) {
Ok(sock) => sock,
Err(err) => {
println!("Couldn't bind: {err:?}");
return Err(err);
}
};
Ok(())
}RunTrait Implementations
impl Clone for SocketAddr
source
impl Clone for SocketAddr
sourcefn clone(&self) -> SocketAddr
source
fn clone(&self) -> SocketAddr
sourceReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0 · source
fn clone_from(&mut self, source: &Self)
1.0.0 · sourcePerforms copy-assignment from source. Read more
Auto Trait Implementations
impl RefUnwindSafe for SocketAddr
impl Send for SocketAddr
impl Sync for SocketAddr
impl Unpin for SocketAddr
impl UnwindSafe for SocketAddr
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
source
impl<T> BorrowMut<T> for T where
T: ?Sized,
sourcefn borrow_mut(&mut self) -> &mut T
const: unstable · source
fn borrow_mut(&mut self) -> &mut T
const: unstable · sourceMutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
source
impl<T> ToOwned for T where
T: Clone,
sourcetype Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
source
fn clone_into(&self, target: &mut T)
sourceUses borrowed data to replace owned data, usually by cloning. Read more