WriteChannel

Struct WriteChannel 

Source
pub struct WriteChannel<'d, const N: usize> { /* private fields */ }
Expand description

socket write channel
N is channel len

Implementations§

Source§

impl<'d, const N: usize> WriteChannel<'d, N>

custom method

Source

pub fn new(buf: &'d mut [SocketMsg<N>]) -> Self

create write channel

Source

pub async fn is_empty(&self) -> bool

channel is empty

Source

pub async fn enable(&self)

enable channel, allow channels to send data

Source

pub async fn disable(&self)

disable channel, disable channel from sending data

Source

pub async fn try_tcp_write<const CN: usize, const TX_SZ: usize, const RX_SZ: usize, const BUF_SIZE: usize>( &self, conn: &mut TcpConnection<'_, CN, TX_SZ, RX_SZ, BUF_SIZE>, ) -> Result<(), Error>

try tcp write data

Source

pub async fn tcp_write<const CN: usize, const TX_SZ: usize, const RX_SZ: usize, const BUF_SIZE: usize>( &self, conn: &mut TcpConnection<'_, CN, TX_SZ, RX_SZ, BUF_SIZE>, )

Source

pub async fn send_bytes(&self, bytes: &[u8])

send bytes data

Source

pub async fn send_str(&self, s: &str)

send str data

Auto Trait Implementations§

§

impl<'d, const N: usize> !Freeze for WriteChannel<'d, N>

§

impl<'d, const N: usize> !RefUnwindSafe for WriteChannel<'d, N>

§

impl<'d, const N: usize> Send for WriteChannel<'d, N>

§

impl<'d, const N: usize> Sync for WriteChannel<'d, N>

§

impl<'d, const N: usize> Unpin for WriteChannel<'d, N>

§

impl<'d, const N: usize> !UnwindSafe for WriteChannel<'d, N>

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.