pub struct HoloHashed<C>where
C: HashableContent,{
pub content: C,
pub hash: HoloHash<<C as HashableContent>::HashType>,
}
Expand description
Represents some piece of content along with its hash representation, so that hashes need not be calculated multiple times. Provides an easy constructor which consumes the content.
Fields§
§content: C
The content which is hashed of type C.
hash: HoloHash<<C as HashableContent>::HashType>
The hash of the content C.
Implementations§
Source§impl<C> HoloHashed<C>where
C: HashableContent,
impl<C> HoloHashed<C>where
C: HashableContent,
Sourcepub fn with_pre_hashed(
content: C,
hash: HoloHash<<C as HashableContent>::HashType>,
) -> HoloHashed<C>
pub fn with_pre_hashed( content: C, hash: HoloHash<<C as HashableContent>::HashType>, ) -> HoloHashed<C>
Combine content with its precalculated hash
Sourcepub fn as_content(&self) -> &C
pub fn as_content(&self) -> &C
Accessor for content
Sourcepub fn as_content_mut(&mut self) -> &mut C
pub fn as_content_mut(&mut self) -> &mut C
Mutable accessor for content. Only useful for heavily mocked/fixturated data in testing. Guaranteed the hash will no longer match the content if mutated.
Sourcepub fn into_content(self) -> C
pub fn into_content(self) -> C
Convert to content
Sourcepub fn into_inner(self) -> (C, HoloHash<<C as HashableContent>::HashType>)
pub fn into_inner(self) -> (C, HoloHash<<C as HashableContent>::HashType>)
Deconstruct as a tuple
Source§impl<T, C> HoloHashed<C>where
T: HashTypeSync,
C: HashableContent<HashType = T>,
impl<T, C> HoloHashed<C>where
T: HashTypeSync,
C: HashableContent<HashType = T>,
Sourcepub fn from_content_sync(content: C) -> HoloHashed<C>
pub fn from_content_sync(content: C) -> HoloHashed<C>
Compute the hash of this content and store it alongside
Sourcepub fn verify_hash_sync(&self) -> Result<(), HoloHash<T>>
pub fn verify_hash_sync(&self) -> Result<(), HoloHash<T>>
Verify that the cached hash matches the content. Important to run this after e.g. deserialization.
Source§impl<T, C> HoloHashed<C>where
T: HashTypeAsync,
C: HashableContent<HashType = T>,
impl<T, C> HoloHashed<C>where
T: HashTypeAsync,
C: HashableContent<HashType = T>,
Sourcepub async fn from_content(content: C) -> HoloHashed<C>
pub async fn from_content(content: C) -> HoloHashed<C>
Compute the hash of this content and store it alongside
Sourcepub async fn verify_hash(&self) -> Result<(), HoloHash<T>>
pub async fn verify_hash(&self) -> Result<(), HoloHash<T>>
Verify that the cached hash matches the content. Important to run this after e.g. deserialization.
Trait Implementations§
Source§impl<'a, C> Arbitrary<'a> for HoloHashed<C>
impl<'a, C> Arbitrary<'a> for HoloHashed<C>
Source§fn arbitrary(u: &mut Unstructured<'a>) -> Result<HoloHashed<C>, Error>
fn arbitrary(u: &mut Unstructured<'a>) -> Result<HoloHashed<C>, Error>
Self
from the given unstructured data. Read moreSource§fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
Self
from the entirety of the given
unstructured data. Read moreSource§fn size_hint(depth: usize) -> (usize, Option<usize>)
fn size_hint(depth: usize) -> (usize, Option<usize>)
Unstructured
this type
needs to construct itself. Read moreSource§fn try_size_hint(
depth: usize,
) -> Result<(usize, Option<usize>), MaxRecursionReached>
fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>
Unstructured
this type
needs to construct itself. Read moreSource§impl<C> AsRef<C> for HoloHashed<C>where
C: HashableContent,
impl<C> AsRef<C> for HoloHashed<C>where
C: HashableContent,
Source§impl<C> Borrow<C> for HoloHashed<C>where
C: HashableContent,
impl<C> Borrow<C> for HoloHashed<C>where
C: HashableContent,
Source§impl<C> Clone for HoloHashed<C>where
C: HashableContent + Clone,
impl<C> Clone for HoloHashed<C>where
C: HashableContent + Clone,
Source§fn clone(&self) -> HoloHashed<C>
fn clone(&self) -> HoloHashed<C>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<C> Debug for HoloHashed<C>where
C: Debug + HashableContent,
impl<C> Debug for HoloHashed<C>where
C: Debug + HashableContent,
Source§impl<C> Deref for HoloHashed<C>where
C: HashableContent,
impl<C> Deref for HoloHashed<C>where
C: HashableContent,
Source§impl<'de, C> Deserialize<'de> for HoloHashed<C>where
C: HashableContent + Deserialize<'de>,
impl<'de, C> Deserialize<'de> for HoloHashed<C>where
C: HashableContent + Deserialize<'de>,
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<HoloHashed<C>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<HoloHashed<C>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl<C> From<HoloHashed<C>> for (C, HoloHash<<C as HashableContent>::HashType>)where
C: HashableContent,
impl<C> From<HoloHashed<C>> for (C, HoloHash<<C as HashableContent>::HashType>)where
C: HashableContent,
Source§fn from(g: HoloHashed<C>) -> (C, HoloHash<<C as HashableContent>::HashType>)
fn from(g: HoloHashed<C>) -> (C, HoloHash<<C as HashableContent>::HashType>)
Source§impl<T> From<SignedHashed<T>> for HoloHashed<T>where
T: HashableContent,
impl<T> From<SignedHashed<T>> for HoloHashed<T>where
T: HashableContent,
Source§fn from(sh: SignedHashed<T>) -> HoloHashed<T>
fn from(sh: SignedHashed<T>) -> HoloHashed<T>
Source§impl<C> HasHash<<C as HashableContent>::HashType> for HoloHashed<C>where
C: HashableContent,
impl<C> HasHash<<C as HashableContent>::HashType> for HoloHashed<C>where
C: HashableContent,
Source§impl<C> Hash for HoloHashed<C>where
C: HashableContent,
impl<C> Hash for HoloHashed<C>where
C: HashableContent,
Source§impl<C> HashableContent for HoloHashed<C>where
C: HashableContent,
impl<C> HashableContent for HoloHashed<C>where
C: HashableContent,
Source§type HashType = <C as HashableContent>::HashType
type HashType = <C as HashableContent>::HashType
Source§fn hash_type(&self) -> <HoloHashed<C> as HashableContent>::HashType
fn hash_type(&self) -> <HoloHashed<C> as HashableContent>::HashType
Source§fn hashable_content(&self) -> HashableContentBytes
fn hashable_content(&self) -> HashableContentBytes
Source§impl<C> Ord for HoloHashed<C>where
C: HashableContent + Ord,
impl<C> Ord for HoloHashed<C>where
C: HashableContent + Ord,
Source§fn cmp(&self, other: &HoloHashed<C>) -> Ordering
fn cmp(&self, other: &HoloHashed<C>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl<C> PartialEq for HoloHashed<C>where
C: HashableContent,
impl<C> PartialEq for HoloHashed<C>where
C: HashableContent,
Source§impl<C> PartialOrd for HoloHashed<C>where
C: HashableContent + PartialOrd,
impl<C> PartialOrd for HoloHashed<C>where
C: HashableContent + PartialOrd,
Source§impl<C> Serialize for HoloHashed<C>where
C: HashableContent + Serialize,
impl<C> Serialize for HoloHashed<C>where
C: HashableContent + Serialize,
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Source§impl TryFrom<HoloHashed<Entry>> for MemoryBlockEntry
impl TryFrom<HoloHashed<Entry>> for MemoryBlockEntry
Source§fn try_from(
entry_hashed: HoloHashed<Entry>,
) -> Result<MemoryBlockEntry, <MemoryBlockEntry as TryFrom<HoloHashed<Entry>>>::Error>
fn try_from( entry_hashed: HoloHashed<Entry>, ) -> Result<MemoryBlockEntry, <MemoryBlockEntry as TryFrom<HoloHashed<Entry>>>::Error>
Source§impl TryFrom<HoloHashed<Entry>> for MemoryEntry
impl TryFrom<HoloHashed<Entry>> for MemoryEntry
Source§fn try_from(
entry_hashed: HoloHashed<Entry>,
) -> Result<MemoryEntry, <MemoryEntry as TryFrom<HoloHashed<Entry>>>::Error>
fn try_from( entry_hashed: HoloHashed<Entry>, ) -> Result<MemoryEntry, <MemoryEntry as TryFrom<HoloHashed<Entry>>>::Error>
Source§impl TryFrom<HoloHashed<Entry>> for WebAppEntry
impl TryFrom<HoloHashed<Entry>> for WebAppEntry
Source§fn try_from(
entry_hashed: HoloHashed<Entry>,
) -> Result<WebAppEntry, <WebAppEntry as TryFrom<HoloHashed<Entry>>>::Error>
fn try_from( entry_hashed: HoloHashed<Entry>, ) -> Result<WebAppEntry, <WebAppEntry as TryFrom<HoloHashed<Entry>>>::Error>
Source§impl TryFrom<HoloHashed<Entry>> for WebAppPackageEntry
impl TryFrom<HoloHashed<Entry>> for WebAppPackageEntry
Source§fn try_from(
entry_hashed: HoloHashed<Entry>,
) -> Result<WebAppPackageEntry, <WebAppPackageEntry as TryFrom<HoloHashed<Entry>>>::Error>
fn try_from( entry_hashed: HoloHashed<Entry>, ) -> Result<WebAppPackageEntry, <WebAppPackageEntry as TryFrom<HoloHashed<Entry>>>::Error>
Source§impl TryFrom<HoloHashed<Entry>> for WebAppPackageVersionEntry
impl TryFrom<HoloHashed<Entry>> for WebAppPackageVersionEntry
Source§fn try_from(
entry_hashed: HoloHashed<Entry>,
) -> Result<WebAppPackageVersionEntry, <WebAppPackageVersionEntry as TryFrom<HoloHashed<Entry>>>::Error>
fn try_from( entry_hashed: HoloHashed<Entry>, ) -> Result<WebAppPackageVersionEntry, <WebAppPackageVersionEntry as TryFrom<HoloHashed<Entry>>>::Error>
impl<C> Eq for HoloHashed<C>where
C: HashableContent,
Auto Trait Implementations§
impl<C> Freeze for HoloHashed<C>
impl<C> RefUnwindSafe for HoloHashed<C>
impl<C> Send for HoloHashed<C>
impl<C> Sync for HoloHashed<C>
impl<C> Unpin for HoloHashed<C>
impl<C> UnwindSafe for HoloHashed<C>
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Source§impl<P> AsEngineRef for P
impl<P> AsEngineRef for P
Source§fn as_engine_ref(&self) -> EngineRef<'_>
fn as_engine_ref(&self) -> EngineRef<'_>
EngineRef
pointing to the underlying context.Source§impl<P> AsStoreRef for P
impl<P> AsStoreRef for P
Source§fn as_store_ref(&self) -> StoreRef<'_>
fn as_store_ref(&self) -> StoreRef<'_>
StoreRef
pointing to the underlying context.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
Source§impl<T> CallHasher for T
impl<T> CallHasher for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
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
key
and return true
if they are equal.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
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<'a, T, C> HashableContentExtAsync<'a, T> for C
impl<'a, T, C> HashableContentExtAsync<'a, T> for C
Source§fn to_hash(&self) -> MustBoxFuture<'_, HoloHash<T>>
fn to_hash(&self) -> MustBoxFuture<'_, HoloHash<T>>
Source§fn into_hashed(self) -> MustBoxFuture<'a, HoloHashed<C>>
fn into_hashed(self) -> MustBoxFuture<'a, HoloHashed<C>>
Source§impl<T, C> HashableContentExtSync<T> for Cwhere
T: HashTypeSync,
C: HashableContent<HashType = T>,
impl<T, C> HashableContentExtSync<T> for Cwhere
T: HashTypeSync,
C: HashableContent<HashType = T>,
Source§fn into_hashed(self) -> HoloHashed<C>
fn into_hashed(self) -> HoloHashed<C>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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> ⓘ
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> ⓘ
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 moreSource§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.