Trait Invariant

Source
pub trait Invariant {
    // Required method
    fn invariant(self) -> bool;
}

Required Methods§

Source

fn invariant(self) -> bool

logic(prophetic)

Implementations on Foreign Types§

Source§

impl Invariant for !

Source§

fn invariant(self) -> bool

logic(prophetic)

false

Source§

impl<T> Invariant for [T]

Source§

fn invariant(self) -> bool

logic(prophetic)

pearlite! { inv(self@) }

Source§

impl<T, const N: usize> Invariant for [T; N]

Source§

fn invariant(self) -> bool

logic(prophetic)

pearlite! { inv(self@) }

Source§

impl<T: ?Sized> Invariant for &T

Source§

fn invariant(self) -> bool

logic(prophetic)

inv(*self)

Source§

impl<T: ?Sized> Invariant for &mut T

Source§

fn invariant(self) -> bool

logic(prophetic)

pearlite! { inv(*self) && inv(^self) }

Implementors§

Source§

impl<B, I: Iterator, F: FnMut(I::Item) -> Option<B>> Invariant for FilterMap<I, F>

Source§

impl<I: Iterator> Invariant for Enumerate<I>

Source§

impl<I: Iterator, B, F: FnMut(I::Item, Snapshot<Seq<I::Item>>) -> B> Invariant for MapInv<I, I::Item, F>

Source§

impl<I: Iterator, F: FnMut(&I::Item) -> bool> Invariant for Filter<I, F>

Source§

impl<K, V: ?Sized> Invariant for FMap<K, V>

Source§

impl<T> Invariant for Ghost<T>

Source§

impl<T, A: Allocator> Invariant for Vec<T, A>

Source§

impl<T: ?Sized> Invariant for FSet<T>

Source§

impl<T: ?Sized> Invariant for Seq<T>

Source§

impl<T: ?Sized> Invariant for PtrOwn<T>

Source§

impl<T: ?Sized, A: Allocator> Invariant for Box<T, A>