pub struct NullConvergenceLevel<H>where
H: HostTypes,{ /* private fields */ }Expand description
Phase 2 (orphan-closure) — resolver-absent default impl of ConvergenceLevel<H>.
Every accessor returns H::EMPTY_* sentinels (for scalar / host-typed
returns) or a 'static-lifetime reference to a sibling Null*’s ABSENT
const (for trait-typed returns). Downstream provides concrete impls;
this stub closes the ontology-derived trait orphan.
Implementations§
Source§impl<H> NullConvergenceLevel<H>where
H: HostTypes,
impl<H> NullConvergenceLevel<H>where
H: HostTypes,
Sourcepub const ABSENT: NullConvergenceLevel<H>
pub const ABSENT: NullConvergenceLevel<H>
Absent-value sentinel. &Self::ABSENT gives every trait-typed accessor a 'static-lifetime reference target.
Trait Implementations§
Source§impl<H> Clone for NullConvergenceLevel<H>
impl<H> Clone for NullConvergenceLevel<H>
Source§fn clone(&self) -> NullConvergenceLevel<H>
fn clone(&self) -> NullConvergenceLevel<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> ConvergenceLevel<H> for NullConvergenceLevel<H>where
H: HostTypes,
impl<H> ConvergenceLevel<H> for NullConvergenceLevel<H>where
H: HostTypes,
Source§type HopfFiber = NullHopfFiber<H>
type HopfFiber = NullHopfFiber<H>
Associated type for
HopfFiber.Source§fn algebra_dimension(&self) -> u64
fn algebra_dimension(&self) -> u64
The dimension of the division algebra at this level (1, 2, 4, or 8).
Source§fn betti_signature(&self) -> &<H as HostTypes>::HostString
fn betti_signature(&self) -> &<H as HostTypes>::HostString
The Betti number signature at this convergence level.
Source§fn fiber_type(
&self,
) -> &<NullConvergenceLevel<H> as ConvergenceLevel<H>>::HopfFiber
fn fiber_type( &self, ) -> &<NullConvergenceLevel<H> as ConvergenceLevel<H>>::HopfFiber
The Hopf fiber associated with this convergence level.
Source§fn characteristic_identity(&self) -> &<H as HostTypes>::HostString
fn characteristic_identity(&self) -> &<H as HostTypes>::HostString
The characteristic identity at this convergence level (existence, feedback, choice, self-reference).
Source§fn level_name(&self) -> &<H as HostTypes>::HostString
fn level_name(&self) -> &<H as HostTypes>::HostString
Human-readable name of this convergence level.
Source§impl<H> Debug for NullConvergenceLevel<H>
impl<H> Debug for NullConvergenceLevel<H>
Source§impl<H> Default for NullConvergenceLevel<H>where
H: HostTypes,
impl<H> Default for NullConvergenceLevel<H>where
H: HostTypes,
Source§fn default() -> NullConvergenceLevel<H>
fn default() -> NullConvergenceLevel<H>
Returns the “default value” for a type. Read more
Source§impl<H> Hash for NullConvergenceLevel<H>
impl<H> Hash for NullConvergenceLevel<H>
Source§impl<H> PartialEq for NullConvergenceLevel<H>
impl<H> PartialEq for NullConvergenceLevel<H>
Source§fn eq(&self, other: &NullConvergenceLevel<H>) -> bool
fn eq(&self, other: &NullConvergenceLevel<H>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<H> Copy for NullConvergenceLevel<H>
impl<H> Eq for NullConvergenceLevel<H>
impl<H> StructuralPartialEq for NullConvergenceLevel<H>where
H: HostTypes,
Auto Trait Implementations§
impl<H> Freeze for NullConvergenceLevel<H>
impl<H> RefUnwindSafe for NullConvergenceLevel<H>where
H: RefUnwindSafe,
impl<H> Send for NullConvergenceLevel<H>where
H: Send,
impl<H> Sync for NullConvergenceLevel<H>where
H: Sync,
impl<H> Unpin for NullConvergenceLevel<H>where
H: Unpin,
impl<H> UnsafeUnpin for NullConvergenceLevel<H>
impl<H> UnwindSafe for NullConvergenceLevel<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