pub enum ContextFact<T> {
Present(T),
NotApplicable,
NotEstablished,
Unavailable,
}Expand description
Closed absence vocabulary, separate from output availability.
Variants§
Trait Implementations§
Source§impl<T: Clone> Clone for ContextFact<T>
impl<T: Clone> Clone for ContextFact<T>
Source§fn clone(&self) -> ContextFact<T>
fn clone(&self) -> ContextFact<T>
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 moreimpl<T: Copy> Copy for ContextFact<T>
Source§impl<T: Debug> Debug for ContextFact<T>
impl<T: Debug> Debug for ContextFact<T>
impl<T: Eq> Eq for ContextFact<T>
Source§impl<T: PartialEq> PartialEq for ContextFact<T>
impl<T: PartialEq> PartialEq for ContextFact<T>
Source§impl<T> Serialize for ContextFact<T>where
T: Serialize,
impl<T> Serialize for ContextFact<T>where
T: Serialize,
impl<T: PartialEq> StructuralPartialEq for ContextFact<T>
Auto Trait Implementations§
impl<T> Freeze for ContextFact<T>where
T: Freeze,
impl<T> RefUnwindSafe for ContextFact<T>where
T: RefUnwindSafe,
impl<T> Send for ContextFact<T>where
T: Send,
impl<T> Sync for ContextFact<T>where
T: Sync,
impl<T> Unpin for ContextFact<T>where
T: Unpin,
impl<T> UnsafeUnpin for ContextFact<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for ContextFact<T>where
T: 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