Struct tor_rpcbase::dispatch::DispatchTable
source · pub struct DispatchTable { /* private fields */ }Expand description
A collection of method implementations for different method and object types.
A DispatchTable is constructed at run-time from entries registered with
rpc_invoke_fn!.
Implementations§
source§impl DispatchTable
impl DispatchTable
sourcepub fn from_inventory() -> Self
pub fn from_inventory() -> Self
Construct a DispatchTable from the entries registered statically via
rpc_invoke_fn!.
Panics
Panics if two entries are found for the same (method,object) types.
sourcepub fn invoke(
&self,
obj: Arc<dyn Object>,
method: Box<dyn DynMethod>,
ctx: Box<dyn Context>,
sink: BoxedUpdateSink
) -> Result<BoxFuture<'static, RpcResult>, InvokeError>
pub fn invoke( &self, obj: Arc<dyn Object>, method: Box<dyn DynMethod>, ctx: Box<dyn Context>, sink: BoxedUpdateSink ) -> Result<BoxFuture<'static, RpcResult>, InvokeError>
Try to find an appropriate function for calling a given RPC method on a given RPC-visible object.
On success, return a Future.
Trait Implementations§
source§impl Clone for DispatchTable
impl Clone for DispatchTable
source§fn clone(&self) -> DispatchTable
fn clone(&self) -> DispatchTable
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl RefUnwindSafe for DispatchTable
impl Send for DispatchTable
impl Sync for DispatchTable
impl Unpin for DispatchTable
impl UnwindSafe for DispatchTable
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
source§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.