[][src]Struct tari_service_framework::handles::ServiceHandles

pub struct ServiceHandles { /* fields omitted */ }

Simple collection for named handles

Methods

impl ServiceHandles[src]

pub fn new() -> Self[src]

Create a new ServiceHandles

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 get_handle_by_type_id<H>(&self, type_id: TypeId) -> Option<H> where
    H: Clone + 'static, 
[src]

Get a ServiceHandle by name and downcast it to a type H. If the item does not exist or the downcast fails, None is returned.

Trait Implementations

impl Default 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, 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.