[][src]Struct portus::CCPHandle

pub struct CCPHandle {
    pub continue_listening: Arc<AtomicBool>,
    pub join_handle: JoinHandle<Result<()>>,
}

A handle to manage running instances of the CCP execution loop.

Fields

continue_listening: Arc<AtomicBool>join_handle: JoinHandle<Result<()>>

Methods

impl CCPHandle[src]

pub fn kill(&self)[src]

Instruct the execution loop to exit.

pub fn wait(self) -> Result<()>[src]

Collect the error from the thread running the CCP execution loop once it exits.

Trait Implementations

impl Debug for CCPHandle[src]

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.