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§
async fn request<'a: 'b, 'b>( &self, request: XRPLRequest<'a>, ) -> XRPLClientResult<XRPLResponse<'b>>
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.