Struct iroh_relay::client::Client

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

An HTTP Relay client.

Cheaply clonable.

Implementations§

source§

impl Client

source

pub fn public_key(&self) -> PublicKey

The public key for this client

source

pub async fn connect(&self) -> Result<Conn, ClientError>

Connects to a relay Server and returns the underlying relay connection.

Returns ClientError::Closed if the Client is closed.

If there is already an active relay connection, returns the already connected crate::RelayConn.

source

pub async fn note_preferred(&self, is_preferred: bool)

Let the server know that this client is the preferred client

source

pub async fn local_addr(&self) -> Option<SocketAddr>

Get the local addr of the connection. If there is no current underlying relay connection or the Client is closed, returns None.

source

pub async fn ping(&self) -> Result<Duration, ClientError>

Send a ping to the server. Return once we get an expected pong.

There must be a task polling recv_detail to process the pong response.

source

pub async fn send_pong(&self, data: [u8; 8]) -> Result<(), ClientError>

Send a pong back to the server.

If there is no underlying active relay connection, it creates one before attempting to send the pong message.

If there is an error sending pong, it closes the underlying relay connection before returning.

source

pub async fn send( &self, dst_key: PublicKey, b: Bytes ) -> Result<(), ClientError>

Send a packet to the server.

If there is no underlying active relay connection, it creates one before attempting to send the message.

If there is an error sending the packet, it closes the underlying relay connection before returning.

source

pub async fn close(self) -> Result<(), ClientError>

Close the http relay connection.

source

pub async fn close_for_reconnect(&self) -> Result<(), ClientError>

Disconnect the http relay connection.

source

pub async fn is_connected(&self) -> Result<bool, ClientError>

Returns true if the underlying relay connection is established.

Trait Implementations§

source§

impl Clone for Client

source§

fn clone(&self) -> Client

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Client

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Client

§

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 T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

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

§

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

§

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

source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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.

§

impl<T> Instrument for T

§

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

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

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 T
where 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.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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 T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T