[][src]Struct cashweb_keyserver_client::KeyserverClient

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

KeyserverClient allows queries to specific keyservers.

Implementations

impl<S> KeyserverClient<S>[src]

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

Create a new client from a Service.

impl KeyserverClient<HyperClient<HttpConnector>>[src]

pub fn new() -> Self[src]

Create a new HTTP client.

impl KeyserverClient<HyperClient<HttpsConnector<HttpConnector>>>[src]

pub fn new_tls() -> Self[src]

Create new HTTPS client.

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

pub async fn get_peers<'_, '_>(
    &'_ self,
    keyserver_url: &'_ str
) -> Result<Peers, KeyserverError<Self::Error>>
[src]

Get Peers from a keyserver.

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

pub async fn get_metadata<'_, '_, '_>(
    &'_ self,
    keyserver_url: &'_ str,
    address: &'_ str
) -> Result<MetadataPackage, KeyserverError<Self::Error>>
[src]

Get AddressMetadata from a server. The result is wrapped in MetadataPackage.

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

pub async fn put_metadata<'_, '_, '_>(
    &'_ self,
    keyserver_url: &'_ str,
    address: &'_ str,
    auth_wrapper: AuthWrapper,
    token: String
) -> Result<(), KeyserverError<Self::Error>>
[src]

Put AuthWrapper to a keyserver.

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

pub async fn put_raw_metadata<'_, '_, '_>(
    &'_ self,
    keyserver_url: &'_ str,
    address: &'_ str,
    raw_auth_wrapper: Vec<u8>,
    token: String
) -> Result<(), KeyserverError<Self::Error>>
[src]

Put raw AuthWrapper to a keyserver.

Trait Implementations

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

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

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

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

type Response = MetadataPackage

Responses given by the service.

type Error = GetMetadataError<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, GetPeers)> for KeyserverClient<S> where
    S: Service<Request<Body>, Response = Response<Body>>,
    S: Send + Clone + 'static,
    S::Error: Debug,
    <S as Service<Request<Body>>>::Error: Display,
    <S as Service<Request<Body>>>::Future: Send
[src]

type Response = Peers

Responses given by the service.

type Error = GetPeersError<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, GetRawAuthWrapper)> for KeyserverClient<S> where
    S: Service<Request<Body>, Response = Response<Body>>,
    S: Send + Clone + 'static,
    S::Future: Send,
    S::Error: Debug + Display
[src]

type Response = RawAuthWrapperPackage

Responses given by the service.

type Error = GetRawAuthWrapperError<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, PutMetadata)> for KeyserverClient<S> where
    S: Service<Request<Body>, Response = Response<Body>>,
    S: Send + Clone + 'static,
    S::Error: Debug + Display,
    S::Future: Send
[src]

type Response = ()

Responses given by the service.

type Error = PutMetadataError<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, PutRawAuthWrapper)> for KeyserverClient<S> where
    S: Service<Request<Body>, Response = Response<Body>>,
    S: Send + Clone + 'static,
    S::Error: Debug + Display,
    S::Future: Send
[src]

type Response = ()

Responses given by the service.

type Error = PutMetadataError<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, T> Service<SampleRequest<T>> for KeyserverClient<S> where
    T: Send + 'static + Clone + Sized,
    S: Send + Clone + 'static,
    Self: Service<(Uri, T)>,
    Self::Response: Send + Debug,
    Self::Error: Debug + Display + Send,
    Self::Future: Send
[src]

type Response = Vec<(Uri, Result<Self::Response, Self::Error>)>

Responses given by the service.

type Error = SampleError<Self::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 KeyserverClient<S> where
    S: RefUnwindSafe

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

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

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

impl<S> UnwindSafe for KeyserverClient<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, 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>,