[][src]Struct netlink_proto::ConnectionHandle

pub struct ConnectionHandle<T> where
    T: Debug + Clone + Eq + PartialEq
{ /* fields omitted */ }

A handle to pass requests to a Connection.

Implementations

impl<T> ConnectionHandle<T> where
    T: Debug + Clone + Eq + PartialEq
[src]

pub fn request(
    &mut self,
    message: NetlinkMessage<T>,
    destination: SocketAddr
) -> Result<impl Stream<Item = NetlinkMessage<T>>, Error<T>>
[src]

Send a new request and get the response as a stream of messages. Note that some messages are not part of the response stream:

  • acknowledgements: when an acknowledgement is received, the stream is closed
  • end of dump messages: similarly, upon receiving an "end of dump" message, the stream is closed

pub fn notify(
    &mut self,
    message: NetlinkMessage<T>,
    destination: SocketAddr
) -> Result<(), Error<T>>
[src]

Trait Implementations

impl<T: Clone> Clone for ConnectionHandle<T> where
    T: Debug + Clone + Eq + PartialEq
[src]

impl<T: Debug> Debug for ConnectionHandle<T> where
    T: Debug + Clone + Eq + PartialEq
[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for ConnectionHandle<T>

impl<T> Send for ConnectionHandle<T> where
    T: Send

impl<T> Sync for ConnectionHandle<T> where
    T: Send

impl<T> Unpin for ConnectionHandle<T>

impl<T> !UnwindSafe for ConnectionHandle<T>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.