pub struct LspClient { /* private fields */ }
Implementations§
Source§impl LspClient
impl LspClient
pub fn new(client: Client, cln_client: ClnClient) -> Self
Sourcepub async fn request<'a, I, O, E>(
&mut self,
peer_id: &[u8],
method: &impl JsonRpcMethodUnerased<'a, I, O, E>,
param: I,
) -> Result<JsonRpcResponse<O, E>, LspsError>
pub async fn request<'a, I, O, E>( &mut self, peer_id: &[u8], method: &impl JsonRpcMethodUnerased<'a, I, O, E>, param: I, ) -> Result<JsonRpcResponse<O, E>, LspsError>
Create a JSON-rpc request to a LSPS
§Arguments:
- peer_id: the node_id of the lsps
- method: the request method as defined in the LSPS
- param: the request parameter
Sourcepub async fn request_with_json_rpc_id<'a, I, O, E>(
&mut self,
peer_id: &[u8],
method: &impl JsonRpcMethodUnerased<'a, I, O, E>,
param: I,
json_rpc_id: String,
) -> Result<JsonRpcResponse<O, E>, LspsError>
pub async fn request_with_json_rpc_id<'a, I, O, E>( &mut self, peer_id: &[u8], method: &impl JsonRpcMethodUnerased<'a, I, O, E>, param: I, json_rpc_id: String, ) -> Result<JsonRpcResponse<O, E>, LspsError>
Makes the jsonrpc request and returns the response
This method allows the user to specify a custom json_rpc_id.
To ensure compliance with LSPS0 the use of [request
] is recommended.
For some testing scenario’s it is useful to have a reproducable json_rpc_id
pub async fn list_lsp_servers(&mut self) -> Result<Vec<Vec<u8>>, LspsError>
Auto Trait Implementations§
impl !Freeze for LspClient
impl !RefUnwindSafe for LspClient
impl Send for LspClient
impl Sync for LspClient
impl Unpin for LspClient
impl !UnwindSafe for LspClient
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> Downcast for T
impl<T> Downcast for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request