[][src]Struct rustbus::connection::ll_conn::DuplexConn

pub struct DuplexConn {
    pub send: SendConn,
    pub recv: RecvConn,
}

Fields

send: SendConnrecv: RecvConn

Implementations

impl DuplexConn[src]

pub fn connect_to_bus(
    addr: UnixAddr,
    with_unix_fd: bool
) -> Result<DuplexConn, Error>
[src]

Connect to a unix socket

pub fn send_hello(&mut self, timeout: Timeout) -> Result<String, Error>[src]

Sends the obligatory hello message and returns the unique id the daemon assigned this connection

Trait Implementations

impl AsRawFd for DuplexConn[src]

pub fn as_raw_fd(&self) -> RawFd[src]

Reading or writing to the RawFd may result in undefined behavior and break the Conn.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.