pub struct NullAssociativeSubalgebra<H>where
H: HostTypes,{ /* private fields */ }Expand description
Phase 2 (orphan-closure) — resolver-absent default impl of AssociativeSubalgebra<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> NullAssociativeSubalgebra<H>where
H: HostTypes,
impl<H> NullAssociativeSubalgebra<H>where
H: HostTypes,
Sourcepub const ABSENT: NullAssociativeSubalgebra<H>
pub const ABSENT: NullAssociativeSubalgebra<H>
Absent-value sentinel. &Self::ABSENT gives every trait-typed accessor a 'static-lifetime reference target.
Trait Implementations§
Source§impl<H> AssociativeSubalgebra<H> for NullAssociativeSubalgebra<H>where
H: HostTypes,
impl<H> AssociativeSubalgebra<H> for NullAssociativeSubalgebra<H>where
H: HostTypes,
Source§type AssociativeSubalgebraTarget = NullAssociativeSubalgebra<H>
type AssociativeSubalgebraTarget = NullAssociativeSubalgebra<H>
Associated type for
AssociativeSubalgebra.Source§type AssociatorTriple = NullAssociatorTriple<H>
type AssociatorTriple = NullAssociatorTriple<H>
Associated type for
AssociatorTriple.Source§fn subalgebra_ref(
&self,
) -> &<NullAssociativeSubalgebra<H> as AssociativeSubalgebra<H>>::AssociativeSubalgebraTarget
fn subalgebra_ref( &self, ) -> &<NullAssociativeSubalgebra<H> as AssociativeSubalgebra<H>>::AssociativeSubalgebraTarget
The associative subalgebra selected by triple convergence.
Source§fn associator_ref(
&self,
) -> &<NullAssociativeSubalgebra<H> as AssociativeSubalgebra<H>>::AssociatorTriple
fn associator_ref( &self, ) -> &<NullAssociativeSubalgebra<H> as AssociativeSubalgebra<H>>::AssociatorTriple
Reference to the associator triple for this convergence.
Source§impl<H> Clone for NullAssociativeSubalgebra<H>
impl<H> Clone for NullAssociativeSubalgebra<H>
Source§fn clone(&self) -> NullAssociativeSubalgebra<H>
fn clone(&self) -> NullAssociativeSubalgebra<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 NullAssociativeSubalgebra<H>
impl<H> Debug for NullAssociativeSubalgebra<H>
Source§impl<H> Default for NullAssociativeSubalgebra<H>where
H: HostTypes,
impl<H> Default for NullAssociativeSubalgebra<H>where
H: HostTypes,
Source§fn default() -> NullAssociativeSubalgebra<H>
fn default() -> NullAssociativeSubalgebra<H>
Returns the “default value” for a type. Read more
Source§impl<H> Hash for NullAssociativeSubalgebra<H>
impl<H> Hash for NullAssociativeSubalgebra<H>
Source§impl<H> PartialEq for NullAssociativeSubalgebra<H>
impl<H> PartialEq for NullAssociativeSubalgebra<H>
Source§fn eq(&self, other: &NullAssociativeSubalgebra<H>) -> bool
fn eq(&self, other: &NullAssociativeSubalgebra<H>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<H> Copy for NullAssociativeSubalgebra<H>
impl<H> Eq for NullAssociativeSubalgebra<H>
impl<H> StructuralPartialEq for NullAssociativeSubalgebra<H>where
H: HostTypes,
Auto Trait Implementations§
impl<H> Freeze for NullAssociativeSubalgebra<H>
impl<H> RefUnwindSafe for NullAssociativeSubalgebra<H>where
H: RefUnwindSafe,
impl<H> Send for NullAssociativeSubalgebra<H>where
H: Send,
impl<H> Sync for NullAssociativeSubalgebra<H>where
H: Sync,
impl<H> Unpin for NullAssociativeSubalgebra<H>where
H: Unpin,
impl<H> UnsafeUnpin for NullAssociativeSubalgebra<H>
impl<H> UnwindSafe for NullAssociativeSubalgebra<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