kaspa-wrpc-client 0.15.0

Kaspa wRPC client
Documentation
//! Node connection endpoint as provided by the [`Resolver`].

use crate::imports::*;

///
/// Data structure representing a Node connection endpoint
/// as provided by the {@link Resolver}.
///
/// @category Node RPC
///
#[derive(Clone, Debug, Serialize, Deserialize)]
#[wasm_bindgen(inspectable)]
pub struct NodeDescriptor {
    /// The unique identifier of the node.
    #[wasm_bindgen(getter_with_clone)]
    pub uid: String,
    /// The URL of the node WebSocket (wRPC URL).
    #[wasm_bindgen(getter_with_clone)]
    pub url: String,
}

impl Eq for NodeDescriptor {}

impl PartialEq for NodeDescriptor {
    fn eq(&self, other: &Self) -> bool {
        self.url == other.url
    }
}

impl std::fmt::Display for NodeDescriptor {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.url)
    }
}

impl NodeDescriptor {
    pub fn url(&self) -> String {
        self.url.clone()
    }
}