Struct rings_rpc::client::Client

source ·
pub struct Client { /* private fields */ }
Expand description

Wrap json_client send request between nodes or browsers.

Implementations§

source§

impl Client

source

pub fn new(endpoint_url: &str, delegated_sk: Option<SessionSk>) -> Self

Creates a new Client instance with the specified endpoint URL

source

pub async fn connect_peer_via_http(&mut self, http_url: &str) -> Result<String>

Establishes a WebRTC connection with a remote peer using HTTP as the signaling channel.

This function allows two peers to establish a WebRTC connection using HTTP, which can be useful in scenarios where a direct peer-to-peer connection is not possible due to firewall restrictions or other network issues. The function sends ICE candidates and Session Description Protocol (SDP) messages over HTTP as a form of signaling to establish the connection.

Takes a URL for an HTTP server that will be used as the signaling channel to exchange ICE candidates and SDP with the remote peer. Returns a Did that can be used to refer to this connection in subsequent WebRTC operations.

source

pub async fn connect_with_seed(&mut self, seeds: &[Value]) -> Result<()>

Attempts to connect to a peer using a seed file located at the specified source path.

source

pub async fn connect_with_did(&mut self, did: &str) -> Result<()>

Attempts to connect to a peer using a DID stored in a Distributed Hash Table (DHT).

source

pub async fn list_peers(&mut self) -> Result<Vec<Peer>>

Lists all connected peers and their status.

Returns an Output containing a formatted string representation of the list of peers if successful, or an anyhow::Error if an error occurred.

source

pub async fn disconnect(&mut self, did: &str) -> Result<()>

Disconnects from the peer with the specified DID.

source

pub async fn send_message( &self, did: &str, text: &str ) -> Result<SendMessageResponse>

Sends a message to the specified peer.

source

pub async fn send_custom_message( &self, did: &str, message_type: u16, data: &str ) -> Result<SendMessageResponse>

Sends a custom message to the specified peer.

source

pub async fn send_http_request_message( &self, did: &str, name: &str, method: Method, url: &str, timeout: Timeout, headers: &[(&str, &str)], body: Option<String> ) -> Result<SendMessageResponse>

Sends an HTTP request message to the specified peer.

source

pub async fn send_simple_text_message( &self, did: &str, text: &str ) -> Result<SendMessageResponse>

Sends a simple text message to the specified peer.

source

pub async fn register_service(&self, name: &str) -> Result<()>

Registers a new service with the given name.

source

pub async fn lookup_service(&self, name: &str) -> Result<Vec<String>>

Looks up the DIDs of services registered with the given name.

source

pub async fn publish_message_to_topic( &self, topic: &str, data: &str ) -> Result<()>

Publishes a message to the specified topic.

source

pub async fn fetch_topic_messages( &self, topic: &str, index: usize ) -> Result<Vec<String>>

source

pub async fn inspect(&self) -> Result<NodeInfo>

Query for swarm inspect info.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Client

§

impl Send for Client

§

impl Sync for Client

§

impl Unpin for Client

§

impl !UnwindSafe for Client

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T> AsTaggedExplicit<'a> for Twhere T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self>

§

impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T> AsTaggedImplicit<'a> for Twhere T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self, E>

source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more