Struct rings_node::native::cli::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, session_sk: SessionSk) -> Result<Self>

Creates a new Client instance with the specified endpoint URL and signature.

source

pub async fn connect_peer_via_http( &mut self, http_url: &str ) -> Result<ClientOutput<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, source: &str ) -> Result<ClientOutput<()>>

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<ClientOutput<()>>

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<ClientOutput<()>>

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<ClientOutput<()>>

Disconnects from the peer with the specified DID.

source

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

Sends a message to the specified peer.

source

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

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<ClientOutput<()>>

Sends an HTTP request message to the specified peer.

source

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

Sends a simple text message to the specified peer.

source

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

Registers a new service with the given name.

source

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

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<ClientOutput<()>>

Publishes a message to the specified topic.

source

pub async fn subscribe_topic<'a, 'b>( &'a self, topic: String ) -> impl Stream<Item = String> + 'bwhere 'a: 'b,

Subscribes to the specified topic and returns a stream of messages published to the topic.

source

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

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<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
§

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
§

impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

§

fn deserialize( &self, deserializer: &mut D ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
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> LayoutRaw for T

§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Gets the layout of the type.
§

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
§

impl<T> Pointee for T

§

type Metadata = ()

The type for metadata in pointers and references to Self.
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<T> Upcastable for Twhere T: Any + Send + Sync + 'static,

§

fn upcast_any_ref(&self) -> &(dyn Any + 'static)

upcast ref
§

fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)

upcast mut ref
§

fn upcast_any_box(self: Box<T, Global>) -> Box<dyn Any, Global>

upcast boxed dyn
§

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