pub struct NullComplement<H: HostTypes> { /* private fields */ }Expand description
Resolver-absent default Complement<H>. Implements Component<H> plus
the exterior_criteria() accessor returning a reference to an embedded
NullTermExpression.
Trait Implementations§
Source§impl<H: Clone + HostTypes> Clone for NullComplement<H>
impl<H: Clone + HostTypes> Clone for NullComplement<H>
Source§fn clone(&self) -> NullComplement<H>
fn clone(&self) -> NullComplement<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: HostTypes> Complement<H> for NullComplement<H>
impl<H: HostTypes> Complement<H> for NullComplement<H>
Source§type TermExpression = NullTermExpression<H>
type TermExpression = NullTermExpression<H>
Associated type for
TermExpression.Source§fn exterior_criteria(&self) -> &Self::TermExpression
fn exterior_criteria(&self) -> &Self::TermExpression
The formal membership criterion for this Complement: x ∈ Ext(T) iff x ∉ carrier(T). The Complement is context-dependent on the active type T (FPM_9).
Source§impl<H: HostTypes> Component<H> for NullComplement<H>
impl<H: HostTypes> Component<H> for NullComplement<H>
Source§impl<H: HostTypes> Default for NullComplement<H>
impl<H: HostTypes> Default for NullComplement<H>
Source§impl<H: PartialEq + HostTypes> PartialEq for NullComplement<H>
impl<H: PartialEq + HostTypes> PartialEq for NullComplement<H>
Source§fn eq(&self, other: &NullComplement<H>) -> bool
fn eq(&self, other: &NullComplement<H>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<H: Copy + HostTypes> Copy for NullComplement<H>
impl<H: Eq + HostTypes> Eq for NullComplement<H>
impl<H: HostTypes> StructuralPartialEq for NullComplement<H>
Auto Trait Implementations§
impl<H> Freeze for NullComplement<H>
impl<H> RefUnwindSafe for NullComplement<H>where
H: RefUnwindSafe,
impl<H> Send for NullComplement<H>where
H: Send,
impl<H> Sync for NullComplement<H>where
H: Sync,
impl<H> Unpin for NullComplement<H>where
H: Unpin,
impl<H> UnsafeUnpin for NullComplement<H>
impl<H> UnwindSafe for NullComplement<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