Skip to main content

TsClient

Struct TsClient 

Source
pub struct TsClient { /* private fields */ }
Expand description

Interprets a JSON-RPC program as a TypeScript client module.

Implementations§

Source§

impl TsClient

Source

pub fn new(members: Spelling) -> Self

Emits a client whose member names are spelled this way.

Trait Implementations§

Source§

impl Clone for TsClient

Source§

fn clone(&self) -> TsClient

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for TsClient

Source§

impl Debug for TsClient

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<Context> HandlerContextAlg<Context> for TsClient
where Context: Send + Sync + 'static,

Source§

type Handle = Arc<Context>

The owned carrier cloned into asynchronous operation invocations.
Source§

impl JsonRpcAlg for TsClient

Source§

type Methods = TsModule

The interpreter’s homogeneous method collection.
Source§

fn jsonrpc_empty(&self) -> TsModule

Returns the empty JSON-RPC method collection.
Source§

fn jsonrpc_merge(&self, left: TsModule, right: TsModule) -> TsModule

Combines two JSON-RPC method collections.
Source§

impl<Handle, Args, Output> JsonRpcFallibleAlg<Handle, Args, Output> for TsClient
where Args: TsParams, Output: OutcomeAlg, Output::Value: ShapeOf<TsShape, Shape = TsType>,

Source§

fn finish_jsonrpc_positional_fallible<Handler>( &self, name: &'static str, arg_names: &'static [&'static str], _handler: Handler, ) -> TsModule
where Handler: ApplyAlg<Handle, Args, Output = Output> + Send + Sync + 'static,

Registers a fallible handler decoded from positional parameters. Read more
Source§

fn finish_jsonrpc_named_fallible<Handler>( &self, name: &'static str, arg_names: &'static [&'static str], _handler: Handler, ) -> TsModule
where Handler: ApplyAlg<Handle, Args, Output = Output> + Send + Sync + 'static,

Registers a fallible handler decoded from named parameters.
Source§

impl<Handle, Args, Output> JsonRpcMethodAlg<Handle, Args, Output> for TsClient
where Args: TsParams, Output: ShapeOf<TsShape, Shape = TsType>,

Source§

fn finish_jsonrpc_positional_method<Handler>( &self, name: &'static str, arg_names: &'static [&'static str], _handler: Handler, ) -> TsModule
where Handler: ApplyAlg<Handle, Args, Output = Output> + Send + Sync + 'static,

Registers a first-order handler decoded from positional parameters. Read more
Source§

fn finish_jsonrpc_named_method<Handler>( &self, name: &'static str, arg_names: &'static [&'static str], _handler: Handler, ) -> TsModule
where Handler: ApplyAlg<Handle, Args, Output = Output> + Send + Sync + 'static,

Registers a first-order handler decoded from named parameters.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<_INNER> JsonRpcApiAlg for _INNER
where _INNER: JsonRpcAlg,

Source§

impl<This> JsonRpcProgramExt<This> for This

Source§

fn compile_jsonrpc<Program>( &self, program: Program, ) -> <Program as JsonRpcProgramAlg<This>>::Methods
where Program: JsonRpcProgramAlg<This>,

Compiles a named JSON-RPC program with this interpreter.

Source§

impl<This> ShapeProgramExt<This> for This

Source§

fn compile_shape<Program>( &self, program: Program, ) -> <Program as ShapeProgramAlg<This>>::Ty
where Program: ShapeProgramAlg<This>,

Folds a declaration with this interpretation.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.