[][src]Struct cashweb_relay_client::RelayClient

pub struct RelayClient<S> { /* fields omitted */ }

RelayClient allows queries to specific relay servers.

Implementations

impl<S> RelayClient<S>[src]

pub fn from_service(service: S) -> Self[src]

Create a new client from a service.

impl RelayClient<HyperClient<HttpConnector>>[src]

pub fn new() -> Self[src]

Create a new HTTP client.

impl<S> RelayClient<S> where
    Self: Service<(Uri, GetProfile), Response = ProfilePackage>,
    Self: Sync + Clone + Send + 'static,
    Self::Future: Send + Sync + 'static,
    Self::Error: Debug + Display + Error
[src]

pub async fn get_profile<'_, '_, '_>(
    &'_ self,
    keyserver_url: &'_ str,
    address: &'_ str
) -> Result<ProfilePackage, RelayError<Self::Error>>
[src]

Get Profile from a server. The result is wrapped in ProfilePackage.

impl<S> RelayClient<S> where
    Self: Service<(Uri, PutProfile), Response = ()>,
    Self: Sync + Clone + Send + 'static,
    Self::Future: Send + Sync + 'static,
    Self::Error: Debug + Display + Error
[src]

pub async fn put_profile<'_, '_, '_>(
    &'_ self,
    relay_url: &'_ str,
    address: &'_ str,
    profile: Profile,
    token: String
) -> Result<(), RelayError<Self::Error>>
[src]

Put a Profile to a relay server.

Trait Implementations

impl<S: Clone> Clone for RelayClient<S>[src]

impl<S: Debug> Debug for RelayClient<S>[src]

impl Default for RelayClient<HyperClient<HttpConnector>>[src]

impl<S> Service<(Uri, GetMessages)> for RelayClient<S> where
    S: Service<Request<Body>, Response = Response<Body>>,
    S: Send + Clone + 'static,
    S::Future: Send,
    S::Error: Debug + Display
[src]

type Response = MessagePage

Responses given by the service.

type Error = GetMessageError<S::Error>

Errors produced by the service.

type Future = Pin<Box<dyn Future<Output = Result<Self::Response, Self::Error>> + Send + 'static>>

The future response value.

impl<S> Service<(Uri, GetProfile)> for RelayClient<S> where
    S: Service<Request<Body>, Response = Response<Body>>,
    S: Send + Clone + 'static,
    S::Future: Send,
    S::Error: Debug + Display
[src]

type Response = AuthWrapper

Responses given by the service.

type Error = GetProfileError<S::Error>

Errors produced by the service.

type Future = Pin<Box<dyn Future<Output = Result<Self::Response, Self::Error>> + Send + 'static>>

The future response value.

impl<S> Service<(Uri, PutProfile)> for RelayClient<S> where
    S: Service<Request<Body>, Response = Response<Body>>,
    S: Send + Clone + 'static,
    S::Future: Send,
    S::Error: Debug + Display
[src]

type Response = ()

Responses given by the service.

type Error = PutProfileError<S::Error>

Errors produced by the service.

type Future = Pin<Box<dyn Future<Output = Result<Self::Response, Self::Error>> + Send + 'static>>

The future response value.

Auto Trait Implementations

impl<S> RefUnwindSafe for RelayClient<S> where
    S: RefUnwindSafe

impl<S> Send for RelayClient<S> where
    S: Send

impl<S> Sync for RelayClient<S> where
    S: Sync

impl<S> Unpin for RelayClient<S> where
    S: Unpin

impl<S> UnwindSafe for RelayClient<S> where
    S: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, Request> ServiceExt<Request> for T where
    T: Service<Request> + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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