pub struct BuiltClient { /* private fields */ }Expand description
A concrete client built by ClientBuilder.
Implementations§
Trait Implementations§
Source§impl Client for BuiltClient
impl Client for BuiltClient
Source§fn send_request(
&self,
request: ClientRequest,
) -> impl Future<Output = Result<ClientResponse, SDKError>> + Send
fn send_request( &self, request: ClientRequest, ) -> impl Future<Output = Result<ClientResponse, SDKError>> + Send
Sends a request and receives a response asynchronously.
Source§impl Clone for BuiltClient
impl Clone for BuiltClient
Source§fn clone(&self) -> BuiltClient
fn clone(&self) -> BuiltClient
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Freeze for BuiltClient
impl RefUnwindSafe for BuiltClient
impl Send for BuiltClient
impl Sync for BuiltClient
impl Unpin for BuiltClient
impl UnsafeUnpin for BuiltClient
impl UnwindSafe for BuiltClient
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