[][src]Struct cashweb_keyserver_client::SampleResponse

pub struct SampleResponse<R, E> {
    pub response: Option<(Uri, R)>,
    pub errors: Vec<(Uri, E)>,
}

Response to a sample query.

Fields

response: Option<(Uri, R)>

Paired Uri and response.

errors: Vec<(Uri, E)>

The errors paired with the Uri of the keyserver they originated at.

Implementations

impl<R, E> SampleResponse<R, E> where
    R: Debug,
    E: Debug
[src]

pub fn select<F: FnOnce(Vec<(Uri, R)>) -> Option<(Uri, R)>>(
    responses: Vec<(Uri, Result<R, E>)>,
    selector: F
) -> Self
[src]

Create a sample response from a list of results.

Trait Implementations

impl<R: Clone, E: Clone> Clone for SampleResponse<R, E>[src]

impl<R: Debug, E: Debug> Debug for SampleResponse<R, E>[src]

impl<R: Eq, E: Eq> Eq for SampleResponse<R, E>[src]

impl<R: PartialEq, E: PartialEq> PartialEq<SampleResponse<R, E>> for SampleResponse<R, E>[src]

impl<R, E> StructuralEq for SampleResponse<R, E>[src]

impl<R, E> StructuralPartialEq for SampleResponse<R, E>[src]

Auto Trait Implementations

impl<R, E> RefUnwindSafe for SampleResponse<R, E> where
    E: RefUnwindSafe,
    R: RefUnwindSafe

impl<R, E> Send for SampleResponse<R, E> where
    E: Send,
    R: Send

impl<R, E> Sync for SampleResponse<R, E> where
    E: Sync,
    R: Sync

impl<R, E> Unpin for SampleResponse<R, E> where
    E: Unpin,
    R: Unpin

impl<R, E> UnwindSafe for SampleResponse<R, E> where
    E: UnwindSafe,
    R: 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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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>,