Trait XRPLAsyncClient

Source
pub trait XRPLAsyncClient: XRPLClient {
    // Provided methods
    async fn request<'a: 'b, 'b>(
        &self,
        request: XRPLRequest<'a>,
    ) -> XRPLClientResult<XRPLResponse<'b>> { ... }
    async fn get_common_fields(&self) -> XRPLClientResult<CommonFields<'_>> { ... }
}

Provided Methods§

Source

async fn request<'a: 'b, 'b>( &self, request: XRPLRequest<'a>, ) -> XRPLClientResult<XRPLResponse<'b>>

Source

async fn get_common_fields(&self) -> XRPLClientResult<CommonFields<'_>>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§