[−][src]Struct raspberry_web::handlers::DbExecutor
This is db executor actor. We are going to run 3 of them in parallel.
Trait Implementations
impl Actor for DbExecutor[src]
impl Actor for DbExecutortype Context = SyncContext<Self>
Actor execution context type
fn started(&mut self, ctx: &mut Self::Context) | [src] |
Method is called when actor get polled first time.
fn stopping(&mut self, ctx: &mut Self::Context) -> Running | [src] |
Method is called after an actor is in Actor::Stopping state. There could be several reasons for stopping. Context::stop get called by the actor itself. All addresses to current actor get dropped and no more evented objects left in the context. Read more
fn stopped(&mut self, ctx: &mut Self::Context) | [src] |
Method is called after an actor is stopped, it can be used to perform any needed cleanup work or spawning more actors. This is final state, after this call actor get dropped. Read more
fn start(self) -> Addr<Self> where | [src] |
Start new asynchronous actor, returns address of newly created actor. Read more
fn start_default() -> Addr<Self> where | [src] |
Start new asynchronous actor, returns address of newly created actor.
fn create<F>(f: F) -> Addr<Self> where | [src] |
Use create method, if you need Context object during actor initialization. Read more
impl Handler<GpioId> for DbExecutor[src]
impl Handler<GpioId> for DbExecutortype Result = Result<Gpio, Error>
The type of value that this handle will return
fn handle(&mut self, msg: GpioId, _: &mut Self::Context) -> Self::Result | [src] |
impl Handler<CheckGpioLevel> for DbExecutor[src]
impl Handler<CheckGpioLevel> for DbExecutortype Result = Result<Gpio, Error>
The type of value that this handle will return
fn handle(&mut self, msg: CheckGpioLevel, _: &mut Self::Context) -> Self::Result | [src] |
impl Handler<SetGpioLevel> for DbExecutor[src]
impl Handler<SetGpioLevel> for DbExecutorAuto Trait Implementations
impl Send for DbExecutor
impl Send for DbExecutorimpl Sync for DbExecutor
impl Sync for DbExecutorBlanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error> | [src] |
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T | [src] |
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error> | [src] |
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId | [src] |
impl<T> IntoSql for T[src]
impl<T> IntoSql for Tfn into_sql<T>(self) -> Self::Expression where | [src] |
Convert self to an expression for Diesel's query builder. Read more
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where | [src] |
Convert &self to an expression for Diesel's query builder. Read more
impl<T> Erased for T
impl<T> Erased for T