pub struct EnrichmentLookup<R: EnrichmentResponse> {
pub smarty_key: u32,
pub etag: String,
pub results: Vec<R>,
}
Fields§
§smarty_key: u32
§etag: String
§results: Vec<R>
Trait Implementations§
Source§impl<R: Clone + EnrichmentResponse> Clone for EnrichmentLookup<R>
impl<R: Clone + EnrichmentResponse> Clone for EnrichmentLookup<R>
Source§fn clone(&self) -> EnrichmentLookup<R>
fn clone(&self) -> EnrichmentLookup<R>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<R: Default + EnrichmentResponse> Default for EnrichmentLookup<R>
impl<R: Default + EnrichmentResponse> Default for EnrichmentLookup<R>
Source§fn default() -> EnrichmentLookup<R>
fn default() -> EnrichmentLookup<R>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<R> Freeze for EnrichmentLookup<R>
impl<R> RefUnwindSafe for EnrichmentLookup<R>where
R: RefUnwindSafe,
impl<R> Send for EnrichmentLookup<R>where
R: Send,
impl<R> Sync for EnrichmentLookup<R>where
R: Sync,
impl<R> Unpin for EnrichmentLookup<R>where
R: Unpin,
impl<R> UnwindSafe for EnrichmentLookup<R>where
R: 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