Struct x11rb::rust_connection::DefaultStream

source ·
pub struct DefaultStream { /* private fields */ }
Expand description

A wrapper around a TcpStream or UnixStream.

Use by default in RustConnection as stream.

Implementations§

source§

impl DefaultStream

source

pub fn connect(addr: &ConnectAddress<'_>) -> Result<(Self, (Family, Vec<u8>))>

Try to connect to the X11 server described by the given arguments.

source

pub fn from_tcp_stream(stream: TcpStream) -> Result<(Self, (Family, Vec<u8>))>

Creates a new Stream from an already connected TcpStream.

The stream will be set in non-blocking mode.

This returns the peer address in a format suitable for x11rb_protocol::xauth::get_auth.

source

pub fn from_unix_stream(stream: UnixStream) -> Result<(Self, (Family, Vec<u8>))>

Creates a new Stream from an already connected UnixStream.

The stream will be set in non-blocking mode.

This returns the peer address in a format suitable for x11rb_protocol::xauth::get_auth.

Trait Implementations§

source§

impl AsFd for DefaultStream

source§

fn as_fd(&self) -> BorrowedFd<'_>

Borrows the file descriptor. Read more
source§

impl AsRawFd for DefaultStream

source§

fn as_raw_fd(&self) -> RawFd

Extracts the raw file descriptor. Read more
source§

impl Debug for DefaultStream

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<DefaultStream> for OwnedFd

source§

fn from(stream: DefaultStream) -> Self

Converts to this type from the input type.
source§

impl IntoRawFd for DefaultStream

source§

fn into_raw_fd(self) -> RawFd

Consumes this object, returning the raw underlying file descriptor. Read more
source§

impl Stream for DefaultStream

source§

fn poll(&self, mode: PollMode) -> Result<()>

Waits for level-triggered read and/or write events on the stream. Read more
source§

fn read( &self, buf: &mut [u8], fd_storage: &mut Vec<RawFdContainer> ) -> Result<usize>

Read some bytes and FDs from this reader without blocking, returning how many bytes were read. Read more
source§

fn write(&self, buf: &[u8], fds: &mut Vec<RawFdContainer>) -> Result<usize>

Write a buffer and some FDs into this writer without blocking, returning how many bytes were written. Read more
source§

fn write_vectored( &self, bufs: &[IoSlice<'_>], fds: &mut Vec<RawFdContainer> ) -> Result<usize>

Like write, except that it writes from a slice of buffers. Like write, this method must never block. Read more

Auto Trait Implementations§

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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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>,

§

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>,

§

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.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more