pub struct Valid<Bound> {
pub assumed: BTreeSet<[Bound; 4]>,
pub implied: BTreeSet<[Bound; 4]>,
}Expand description
Given the rules which were passed, if all the claims in assumed are true then all the
claims in implied are true.
Fields§
§assumed: BTreeSet<[Bound; 4]>§implied: BTreeSet<[Bound; 4]>Trait Implementations§
Auto Trait Implementations§
impl<Bound> Freeze for Valid<Bound>
impl<Bound> RefUnwindSafe for Valid<Bound>where
Bound: RefUnwindSafe,
impl<Bound> Send for Valid<Bound>where
Bound: Send,
impl<Bound> Sync for Valid<Bound>where
Bound: Sync,
impl<Bound> Unpin for Valid<Bound>
impl<Bound> UnwindSafe for Valid<Bound>where
Bound: RefUnwindSafe,
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