pub struct NullHopfFiber<H>where
H: HostTypes,{ /* private fields */ }Expand description
Phase 2 (orphan-closure) — resolver-absent default impl of HopfFiber<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> NullHopfFiber<H>where
H: HostTypes,
impl<H> NullHopfFiber<H>where
H: HostTypes,
Sourcepub const ABSENT: NullHopfFiber<H>
pub const ABSENT: NullHopfFiber<H>
Absent-value sentinel. &Self::ABSENT gives every trait-typed accessor a 'static-lifetime reference target.
Trait Implementations§
Source§impl<H> Clone for NullHopfFiber<H>
impl<H> Clone for NullHopfFiber<H>
Source§fn clone(&self) -> NullHopfFiber<H>
fn clone(&self) -> NullHopfFiber<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 NullHopfFiber<H>
impl<H> Debug for NullHopfFiber<H>
Source§impl<H> Default for NullHopfFiber<H>where
H: HostTypes,
impl<H> Default for NullHopfFiber<H>where
H: HostTypes,
Source§fn default() -> NullHopfFiber<H>
fn default() -> NullHopfFiber<H>
Returns the “default value” for a type. Read more
Source§impl<H> Hash for NullHopfFiber<H>
impl<H> Hash for NullHopfFiber<H>
Source§impl<H> HopfFiber<H> for NullHopfFiber<H>where
H: HostTypes,
impl<H> HopfFiber<H> for NullHopfFiber<H>where
H: HostTypes,
Source§fn fiber_dimension(&self) -> u64
fn fiber_dimension(&self) -> u64
The dimension of the Hopf fiber sphere.
Source§fn total_space(&self) -> &<H as HostTypes>::HostString
fn total_space(&self) -> &<H as HostTypes>::HostString
The total space of the Hopf fibration.
Source§fn base_space(&self) -> &<H as HostTypes>::HostString
fn base_space(&self) -> &<H as HostTypes>::HostString
The base space of the Hopf fibration.
Source§fn fiber_sphere(&self) -> &<H as HostTypes>::HostString
fn fiber_sphere(&self) -> &<H as HostTypes>::HostString
The fiber sphere designation (e.g. S⁰, S¹).
Source§impl<H> PartialEq for NullHopfFiber<H>
impl<H> PartialEq for NullHopfFiber<H>
Source§fn eq(&self, other: &NullHopfFiber<H>) -> bool
fn eq(&self, other: &NullHopfFiber<H>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<H> Copy for NullHopfFiber<H>
impl<H> Eq for NullHopfFiber<H>
impl<H> StructuralPartialEq for NullHopfFiber<H>where
H: HostTypes,
Auto Trait Implementations§
impl<H> Freeze for NullHopfFiber<H>
impl<H> RefUnwindSafe for NullHopfFiber<H>where
H: RefUnwindSafe,
impl<H> Send for NullHopfFiber<H>where
H: Send,
impl<H> Sync for NullHopfFiber<H>where
H: Sync,
impl<H> Unpin for NullHopfFiber<H>where
H: Unpin,
impl<H> UnsafeUnpin for NullHopfFiber<H>
impl<H> UnwindSafe for NullHopfFiber<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