Struct sel4_async_network::Socket

source ·
pub struct Socket<T> { /* private fields */ }

Implementations§

source§

impl<T: AnySocket<'static>> Socket<T>

source

pub fn with<R>(&self, f: impl FnOnce(&T) -> R) -> R

source

pub fn with_mut<R>(&mut self, f: impl FnOnce(&mut T) -> R) -> R

source

pub fn with_context_mut<R>( &mut self, f: impl FnOnce(&mut Context, &mut T) -> R, ) -> R

source§

impl Socket<Socket<'static>>

source

pub async fn connect<T, U>( &mut self, remote_endpoint: T, local_endpoint: U, ) -> Result<(), TcpSocketError>
where T: Into<IpEndpoint>, U: Into<IpListenEndpoint>,

source

pub async fn accept_with_keep_alive( &mut self, local_endpoint: impl Into<IpListenEndpoint>, keep_alive_interval: Option<Duration>, ) -> Result<(), TcpSocketError>

source

pub async fn accept( &mut self, local_endpoint: impl Into<IpListenEndpoint>, ) -> Result<(), TcpSocketError>

source

pub fn close(&mut self)

source

pub fn abort(&mut self)

Trait Implementations§

source§

impl<T> Drop for Socket<T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl ErrorType for Socket<Socket<'static>>

source§

type Error = TcpSocketError

Error type of all the IO operations on this type.
source§

impl Read for Socket<Socket<'static>>

source§

fn poll_read( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &mut [u8], ) -> Poll<Result<usize, Self::Error>>

source§

impl Write for Socket<Socket<'static>>

source§

fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8], ) -> Poll<Result<usize, Self::Error>>

source§

fn poll_flush( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>

Auto Trait Implementations§

§

impl<T> Freeze for Socket<T>

§

impl<T> !RefUnwindSafe for Socket<T>

§

impl<T> !Send for Socket<T>

§

impl<T> !Sync for Socket<T>

§

impl<T> Unpin for Socket<T>
where T: Unpin,

§

impl<T> !UnwindSafe for Socket<T>

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

§

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

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

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

Performs the conversion.