Struct vapcore_io::IoChannel[][src]

pub struct IoChannel<Message> where
    Message: Send + Sync + 'static, 
{ /* fields omitted */ }

Allows sending messages into the event loop. All the IO handlers will get the message in the message callback.

Implementations

impl<Message> IoChannel<Message> where
    Message: Send + Sync + 'static, 
[src]

pub fn send(&self, message: Message) -> Result<(), IoError>[src]

Send a message through the channel

pub fn send_sync(&self, message: Message) -> Result<(), IoError>[src]

Send a message through the channel and handle it synchronously

pub fn disconnected() -> IoChannel<Message>[src]

Create a new channel disconnected from an event loop.

Trait Implementations

impl<Message> Clone for IoChannel<Message> where
    Message: Send + Sync + 'static, 
[src]

Auto Trait Implementations

impl<Message> !RefUnwindSafe for IoChannel<Message>

impl<Message> Send for IoChannel<Message>

impl<Message> Sync for IoChannel<Message>

impl<Message> Unpin for IoChannel<Message>

impl<Message> !UnwindSafe for IoChannel<Message>

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.