[][src]Struct organix::WatchdogQuery

pub struct WatchdogQuery { /* fields omitted */ }

special access to the watchdog direct handle

Implementations

impl WatchdogQuery[src]

pub fn intercom<T: Service>(&self) -> Intercom<T>[src]

retrieve an intercom object, allows to connect and send messages to any given services

pub async fn status<'_, T: Service>(
    &'_ mut self
) -> Result<StatusReport, WatchdogError>
[src]

query the status report of a given service

pub async fn shutdown<'_>(&'_ mut self)[src]

shutdown the watchdog

Reminder: calling this function will shutdown all the services

pub async fn kill<'_>(&'_ mut self)[src]

kill the watchdog

Reminder: calling this function will kill all the services

pub async fn start<'_, T: Service>(&'_ mut self) -> Result<(), WatchdogError>[src]

require the watchdog to start the given service if not already started

pub async fn stop<'_, T: Service>(&'_ mut self) -> Result<(), WatchdogError>[src]

require the watchdog to stop the given service if not already stopped

Trait Implementations

impl Clone for WatchdogQuery[src]

impl Debug for WatchdogQuery[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> Instrument 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.

impl<T> WithSubscriber for T[src]