Enum Socket

Source
pub enum Socket {
    Udp(Mutex<UdpSocket>),
    Tcp(Mutex<TcpSocket>),
}

Variants§

§

Udp(Mutex<UdpSocket>)

§

Tcp(Mutex<TcpSocket>)

Implementations§

Source§

impl Socket

Source

pub fn recv(&self, buf: &mut [u8]) -> LinuxResult<usize>

Source

pub fn sendto(&self, buf: &[u8], addr: SocketAddr) -> LinuxResult<usize>

Source

pub fn recvfrom( &self, buf: &mut [u8], ) -> LinuxResult<(usize, Option<SocketAddr>)>

Source

pub fn listen(&self) -> LinuxResult

Source

pub fn accept(&self) -> LinuxResult<TcpSocket>

Source

pub fn send(&self, buf: &[u8]) -> LinuxResult<usize>

Source

pub fn poll(&self) -> LinuxResult<PollState>

Source

pub fn local_addr(&self) -> LinuxResult<SocketAddr>

Source

pub fn peer_addr(&self) -> LinuxResult<SocketAddr>

Source

pub fn bind(&self, addr: SocketAddr) -> LinuxResult

Source

pub fn connect(&self, addr: SocketAddr) -> LinuxResult

Source

pub fn shutdown(&self) -> LinuxResult

Trait Implementations§

Source§

impl FileLike for Socket

Source§

fn read(&self, buf: &mut [u8]) -> LinuxResult<usize>

Source§

fn write(&self, buf: &[u8]) -> LinuxResult<usize>

Source§

fn stat(&self) -> LinuxResult<Kstat>

Source§

fn into_any(self: Arc<Self>) -> Arc<dyn Any + Send + Sync>

Source§

fn poll(&self) -> LinuxResult<PollState>

Source§

fn set_nonblocking(&self, nonblock: bool) -> LinuxResult

Source§

fn from_fd(fd: c_int) -> LinuxResult<Arc<Self>>
where Self: Sized + 'static,

Source§

fn add_to_fd_table(self) -> LinuxResult<c_int>
where Self: Sized + 'static,

Auto Trait Implementations§

§

impl !Freeze for Socket

§

impl !RefUnwindSafe for Socket

§

impl Send for Socket

§

impl Sync for Socket

§

impl Unpin for Socket

§

impl !UnwindSafe for Socket

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.