Enum async_rustbus::CallAction[][src]

pub enum CallAction {
    Drop,
    Queue,
    Exact,
    Intro,
    Nothing,
}

For use with RpcConn::insert_call_path, this enum determines what should be done when receiving incoming method calls.

Variants

Drop

This action causes incoming calls to be dropped

Queue

This action causes incoming calls within the namespace to be stored, allowing them to be retreived later.

Exact

This action is the same as Queue but requires that call object path is an exact match, rather than also accepting child paths.

Intro

This action process Introspect calls for this path or children, allowing for clients to discover the objects paths provided by this connection. Any other calls received by this action will be replied to with an error.

Nothing

This action does nothing. The message is passed on to the parent to be handled by its action. This variant is primarily constructed by end users to nullify previously added actions.

Trait Implementations

impl Clone for CallAction[src]

impl Debug for CallAction[src]

impl PartialEq<CallAction> for CallAction[src]

impl Copy for CallAction[src]

impl Eq for CallAction[src]

impl StructuralEq for CallAction[src]

impl StructuralPartialEq for CallAction[src]

Auto Trait Implementations

impl RefUnwindSafe for CallAction

impl Send for CallAction

impl Sync for CallAction

impl Unpin for CallAction

impl UnwindSafe for CallAction

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.