Struct iroh_relay::quic::QuicClient
source · pub struct QuicClient { /* private fields */ }
Expand description
Handles the client side of QUIC address discovery.
Implementations§
source§impl QuicClient
impl QuicClient
sourcepub fn new(ep: Endpoint, client_config: ClientConfig) -> Result<Self>
pub fn new(ep: Endpoint, client_config: ClientConfig) -> Result<Self>
Create a new QuicClient to handle the client side of QUIC address discovery.
sourcepub async fn get_addr_and_latency(
&self,
server_addr: SocketAddr,
host: &str
) -> Result<(SocketAddr, Duration)>
pub async fn get_addr_and_latency( &self, server_addr: SocketAddr, host: &str ) -> Result<(SocketAddr, Duration)>
Client side of QUIC address discovery.
Creates a connection and returns the observed address and estimated latency of the connection.
Consumes and gracefully closes the connection.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QuicClient
impl !RefUnwindSafe for QuicClient
impl Send for QuicClient
impl Sync for QuicClient
impl Unpin for QuicClient
impl !UnwindSafe for QuicClient
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§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