[][src]Struct safe_core::event_loop::CoreMsg

pub struct CoreMsg<C: Client, T>(_);

The message format that core event loop understands.

Methods

impl<C: Client, T> CoreMsg<C, T>[src]

pub fn new<F>(f: F) -> Self where
    F: FnOnce(&C, &T) -> Option<TailFuture> + Send + 'static, 
[src]

Construct a new message to ask core event loop to do something. If the return value of the given closure is optionally a future, it will be registered in the event loop.

pub fn build_terminator() -> Self[src]

Construct a new message which when processed by the event loop will terminate the event loop. This will be the graceful exit condition.

Auto Trait Implementations

impl<C, T> !RefUnwindSafe for CoreMsg<C, T>

impl<C, T> Send for CoreMsg<C, T>

impl<C, T> !Sync for CoreMsg<C, T>

impl<C, T> Unpin for CoreMsg<C, T>

impl<C, T> !UnwindSafe for CoreMsg<C, 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> Same<T> for T

type Output = T

Should always be Self

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

type Error = !

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.

impl<T> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,