[][src]Struct podo_core_driver::Controller

pub struct Controller<M> where
    M: PartialEq + Eq + Send + Sync
{ /* fields omitted */ }

Methods

impl<M> Controller<M> where
    M: 'static + PartialEq + Eq + Send + Sync
[src]

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

pub fn stop(&self) -> Result<(), RuntimeError>[src]

pub fn pause(&self) -> Result<(), RuntimeError>[src]

pub fn resume(&self) -> Result<(), RuntimeError>[src]

pub fn hibernate(&self) -> Result<(), RuntimeError>[src]

pub fn wake_up(&self) -> Result<(), RuntimeError>[src]

pub fn request<R>(&self, m: M) -> Result<R, RuntimeError> where
    R: 'static, 
[src]

Auto Trait Implementations

impl<M> RefUnwindSafe for Controller<M>

impl<M> Send for Controller<M>

impl<M> Sync for Controller<M>

impl<M> Unpin for Controller<M>

impl<M> UnwindSafe for Controller<M>

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.