pub struct RetrohuntHit {
pub key: String,
pub classification: ExpandingClassification,
pub sha256: Sha256,
pub expiry_ts: Option<DateTime<Utc>>,
pub search: String,
}Expand description
A hit encountered during a retrohunt search.
Fields§
§key: StringUnique id identifying this retrohunt result
classification: ExpandingClassificationClassification string for the retrohunt job and results list
sha256: Sha256§expiry_ts: Option<DateTime<Utc>>Expiry for this entry.
search: StringTrait Implementations§
Source§impl Clone for RetrohuntHit
impl Clone for RetrohuntHit
Source§fn clone(&self) -> RetrohuntHit
fn clone(&self) -> RetrohuntHit
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 Debug for RetrohuntHit
impl Debug for RetrohuntHit
Source§impl Described<ElasticMeta> for RetrohuntHit
impl Described<ElasticMeta> for RetrohuntHit
Source§fn metadata() -> Descriptor<ElasticMeta>
fn metadata() -> Descriptor<ElasticMeta>
Get self description of this type
Source§impl<'de> Deserialize<'de> for RetrohuntHit
impl<'de> Deserialize<'de> for RetrohuntHit
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RetrohuntHit
impl PartialEq for RetrohuntHit
Source§impl Serialize for RetrohuntHit
impl Serialize for RetrohuntHit
impl Eq for RetrohuntHit
impl StructuralPartialEq for RetrohuntHit
Auto Trait Implementations§
impl Freeze for RetrohuntHit
impl RefUnwindSafe for RetrohuntHit
impl Send for RetrohuntHit
impl Sync for RetrohuntHit
impl Unpin for RetrohuntHit
impl UnwindSafe for RetrohuntHit
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more