Struct cashweb::keyserver_client::SampleResponse[][src]

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

Response to a sample query.

Fields

response: Option<(Uri, R)>

Paired Uri and response.

errors: Vec<(Uri, E), Global>

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

Implementations

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

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

Create a sample response from a list of results.

Trait Implementations

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

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

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

impl<R, E> PartialEq<SampleResponse<R, E>> for SampleResponse<R, E> where
    E: PartialEq<E>,
    R: PartialEq<R>, 
[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
[src]

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

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

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

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

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
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument 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> 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>,