pub struct AggregateResponse<R, E> {
pub response: R,
pub errors: Vec<(Uri, E)>,
}
Expand description
Response to an aggregation query.
Fields§
§response: R
The aggregated response of the sample.
errors: Vec<(Uri, E)>
The errors paired with the Uri
of the keyserver they originated at.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<R, E> Freeze for AggregateResponse<R, E>where
R: Freeze,
impl<R, E> RefUnwindSafe for AggregateResponse<R, E>where
R: RefUnwindSafe,
E: RefUnwindSafe,
impl<R, E> Send for AggregateResponse<R, E>
impl<R, E> Sync for AggregateResponse<R, E>
impl<R, E> Unpin for AggregateResponse<R, E>
impl<R, E> UnwindSafe for AggregateResponse<R, E>where
R: UnwindSafe,
E: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more