pub struct HopfFiberHandle<H>where
H: HostTypes,{
pub fingerprint: ContentFingerprint,
/* private fields */
}Expand description
Phase 8 (orphan-closure) — content-addressed handle for HopfFiber<H>.
Pairs a crate::enforcement::ContentFingerprint with a phantom
H so type-state checks can’t mix handles across HostTypes impls.
Fields§
§fingerprint: ContentFingerprintContent fingerprint identifying the resolved record.
Implementations§
Source§impl<H> HopfFiberHandle<H>where
H: HostTypes,
impl<H> HopfFiberHandle<H>where
H: HostTypes,
Sourcepub const fn new(fingerprint: ContentFingerprint) -> HopfFiberHandle<H>
pub const fn new(fingerprint: ContentFingerprint) -> HopfFiberHandle<H>
Construct a handle from its content fingerprint.
Trait Implementations§
Source§impl<H> Clone for HopfFiberHandle<H>where
H: HostTypes,
impl<H> Clone for HopfFiberHandle<H>where
H: HostTypes,
Source§fn clone(&self) -> HopfFiberHandle<H>
fn clone(&self) -> HopfFiberHandle<H>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<H> Debug for HopfFiberHandle<H>
impl<H> Debug for HopfFiberHandle<H>
Source§impl<H> Hash for HopfFiberHandle<H>where
H: HostTypes,
impl<H> Hash for HopfFiberHandle<H>where
H: HostTypes,
Source§impl<H> PartialEq for HopfFiberHandle<H>where
H: HostTypes,
impl<H> PartialEq for HopfFiberHandle<H>where
H: HostTypes,
Source§fn eq(&self, other: &HopfFiberHandle<H>) -> bool
fn eq(&self, other: &HopfFiberHandle<H>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<H> Copy for HopfFiberHandle<H>where
H: HostTypes,
impl<H> Eq for HopfFiberHandle<H>where
H: HostTypes,
Auto Trait Implementations§
impl<H> Freeze for HopfFiberHandle<H>
impl<H> RefUnwindSafe for HopfFiberHandle<H>where
H: RefUnwindSafe,
impl<H> Send for HopfFiberHandle<H>where
H: Send,
impl<H> Sync for HopfFiberHandle<H>where
H: Sync,
impl<H> Unpin for HopfFiberHandle<H>where
H: Unpin,
impl<H> UnsafeUnpin for HopfFiberHandle<H>
impl<H> UnwindSafe for HopfFiberHandle<H>where
H: 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