Struct cashweb::keyserver_client::AggregateResponse[][src]

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

Response to an aggregation query.

Fields

response: R

The aggregated response of the sample.

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

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

Implementations

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

pub fn aggregate<F>(
    responses: Vec<(Uri, Result<R, E>), Global>,
    aggregator: F
) -> AggregateResponse<R, E> where
    F: FnOnce(Vec<(Uri, R), Global>) -> R, 
[src]

Create a sample response from a list of results.

Trait Implementations

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

Auto Trait Implementations

impl<R, E> RefUnwindSafe for AggregateResponse<R, E> where
    E: RefUnwindSafe,
    R: RefUnwindSafe
[src]

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

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

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

impl<R, E> UnwindSafe for AggregateResponse<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<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, 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>,