Struct binder_rust::ServiceManager[][src]

pub struct ServiceManager<'a> { /* fields omitted */ }

Implementations

impl<'a> ServiceManager<'a>[src]

pub fn new() -> Self[src]

pub fn get_service(
    &'a mut self,
    service_name: &'a str,
    interface_name: &'a str
) -> Service<'a>
[src]

pub fn register_service<BS: BinderService>(
    &'a mut self,
    service_delegate: &'a BS,
    name: &'a str,
    interface_name: &'a str,
    allow_isolated: bool,
    dump_priority: u32
) -> ServiceListener<'a, BS>
[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ServiceManager<'a>

impl<'a> !Send for ServiceManager<'a>

impl<'a> !Sync for ServiceManager<'a>

impl<'a> Unpin for ServiceManager<'a>

impl<'a> UnwindSafe for ServiceManager<'a>

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.