Struct asyncio::SeqPacketSocket
[−]
[src]
pub struct SeqPacketSocket<P> { /* fields omitted */ }
Provides a sequenced packet socket.
pub struct SeqPacketSocket<P> { /* fields omitted */ }
Provides a sequenced packet socket.
impl<P: Protocol> SeqPacketSocket<P>
[src]fn new(ctx: &IoContext, pro: P) -> Result<SeqPacketSocket<P>>
fn async_connect<F>(&self, ep: &P::Endpoint, handler: F) -> F::Output where F: Handler<(), Error>
fn async_receive<F>(&self, buf: &mut [u8], flags: i32, handler: F) -> F::Output where F: Handler<usize, Error>
fn async_send<F>(&self, buf: &[u8], flags: i32, handler: F) -> F::Output where F: Handler<usize, Error>
fn available(&self) -> Result<usize>
fn bind(&self, ep: &P::Endpoint) -> Result<()>
fn cancel(&self) -> &Self
fn connect(&self, ep: &P::Endpoint) -> Result<()>
fn get_non_blocking(&self) -> Result<bool>
fn get_option<C>(&self) -> Result<C> where C: GetSocketOption<P>
fn io_control<T>(&self, cmd: &mut T) -> Result<()> where T: IoControl
fn local_endpoint(&self) -> Result<P::Endpoint>
fn receive(&self, buf: &mut [u8], flags: i32) -> Result<usize>
fn remote_endpoint(&self) -> Result<P::Endpoint>
fn send(&self, buf: &[u8], flags: i32) -> Result<usize>
fn set_non_blocking(&self, on: bool) -> Result<()>
fn set_option<C>(&self, cmd: C) -> Result<()> where C: SetSocketOption<P>
fn shutdown(&self, how: Shutdown) -> Result<()>
impl<P: Protocol> Debug for SeqPacketSocket<P>
[src]impl<P> AsRawFd for SeqPacketSocket<P>
[src]impl<P> Send for SeqPacketSocket<P>
[src]impl<P> AsIoContext for SeqPacketSocket<P>
[src]impl<P: Protocol> Socket<P> for SeqPacketSocket<P>
[src]unsafe fn from_raw_fd(ctx: &IoContext, pro: P, fd: RawFd) -> SeqPacketSocket<P>
fn protocol(&self) -> P