pub struct NullPostnikovResolver<H>(/* private fields */)
where
H: Hasher;Expand description
ADR-036 Null PostnikovResolver impl. resolve always emits the
RESOLVER_ABSENT shape violation — the catamorphism translates this
into PipelineFailure::ShapeViolation recoverable via Term::Try’s
default-propagation handler (ADR-022 D3 G9).
Implementations§
Source§impl<H> NullPostnikovResolver<H>where
H: Hasher,
impl<H> NullPostnikovResolver<H>where
H: Hasher,
Sourcepub const fn new() -> NullPostnikovResolver<H>
pub const fn new() -> NullPostnikovResolver<H>
Construct a new Null resolver.
Trait Implementations§
Source§impl<H> Debug for NullPostnikovResolver<H>
impl<H> Debug for NullPostnikovResolver<H>
Source§impl<H> Default for NullPostnikovResolver<H>
impl<H> Default for NullPostnikovResolver<H>
Source§fn default() -> NullPostnikovResolver<H>
fn default() -> NullPostnikovResolver<H>
Returns the “default value” for a type. Read more
Source§impl<const INLINE_BYTES: usize, H> PostnikovResolver<INLINE_BYTES, H> for NullPostnikovResolver<H>where
H: Hasher,
impl<const INLINE_BYTES: usize, H> PostnikovResolver<INLINE_BYTES, H> for NullPostnikovResolver<H>where
H: Hasher,
Auto Trait Implementations§
impl<H> Freeze for NullPostnikovResolver<H>
impl<H> RefUnwindSafe for NullPostnikovResolver<H>where
H: RefUnwindSafe,
impl<H> Send for NullPostnikovResolver<H>where
H: Send,
impl<H> Sync for NullPostnikovResolver<H>where
H: Sync,
impl<H> Unpin for NullPostnikovResolver<H>where
H: Unpin,
impl<H> UnsafeUnpin for NullPostnikovResolver<H>
impl<H> UnwindSafe for NullPostnikovResolver<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