[][src]Struct tari_service_framework::ServiceHandles

pub struct ServiceHandles { /* fields omitted */ }

Simple collection for named handles

Implementations

impl ServiceHandles[src]

pub fn register<H>(&self, handle: H) where
    H: Any + Send + Sync
[src]

Register a handle

pub fn get_handle<H>(&self) -> Option<H> where
    H: Clone + 'static, 
[src]

Get a handle from the given type (TypeId) and downcast it to a type H. If the item does not exist or the downcast fails, None is returned.

pub fn take_handle<H: 'static>(&mut self) -> Option<H>[src]

Take ownership of a handle

pub fn expect_handle<H>(&self) -> H where
    H: Clone + 'static, 
[src]

Get a handle from the given type (TypeId) and downcast it to a type H. If the item does not exist or the downcast fails, a panic occurs

pub fn get_shutdown_signal(&self) -> ShutdownSignal[src]

Returns the shutdown signal for this stack

Trait Implementations

impl Clone for ServiceHandles[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> 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.