pub enum StructuralFactSet<T> {
Known(Vec<T>),
Unknown(StructuralFactUnknownReason),
}Variants§
Known(Vec<T>)
Unknown(StructuralFactUnknownReason)
Implementations§
Source§impl<T> StructuralFactSet<T>
impl<T> StructuralFactSet<T>
pub fn known(items: impl IntoIterator<Item = T>) -> Self
Trait Implementations§
Source§impl<T: Clone> Clone for StructuralFactSet<T>
impl<T: Clone> Clone for StructuralFactSet<T>
Source§fn clone(&self) -> StructuralFactSet<T>
fn clone(&self) -> StructuralFactSet<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 moreSource§impl<T: Debug> Debug for StructuralFactSet<T>
impl<T: Debug> Debug for StructuralFactSet<T>
impl<T: Eq> Eq for StructuralFactSet<T>
Source§impl<T: PartialEq> PartialEq for StructuralFactSet<T>
impl<T: PartialEq> PartialEq for StructuralFactSet<T>
impl<T: PartialEq> StructuralPartialEq for StructuralFactSet<T>
Auto Trait Implementations§
impl<T> Freeze for StructuralFactSet<T>
impl<T> RefUnwindSafe for StructuralFactSet<T>where
T: RefUnwindSafe,
impl<T> Send for StructuralFactSet<T>where
T: Send,
impl<T> Sync for StructuralFactSet<T>where
T: Sync,
impl<T> Unpin for StructuralFactSet<T>where
T: Unpin,
impl<T> UnsafeUnpin for StructuralFactSet<T>
impl<T> UnwindSafe for StructuralFactSet<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