Skip to main content

EndpointParamsInitial

Trait EndpointParamsInitial 

Source
pub trait EndpointParamsInitial<E>: EndpointParams
where E: Endpoint,
{ // Required method fn initial( client: &Client, ) -> EndpointRequestBuilder<'_, E, Self::BuilderState>; }
Expand description

Creates the initial EndpointRequestBuilder for client.call::<E>().

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<E> EndpointParamsInitial<E> for ()
where E: Endpoint,

Implementors§

Source§

impl<E, P> EndpointParamsInitial<E> for P
where E: Endpoint, P: EndpointParams<BuilderState = NeedsParams>,