pub struct IndexedIndicatorConstraint<'a, K = IndexKey> { /* private fields */ }Expand description
Owned handles returned by an indexed single-relation indicator declaration.
Implementations§
Source§impl<'a, K> IndexedIndicatorConstraint<'a, K>
impl<'a, K> IndexedIndicatorConstraint<'a, K>
Source§impl<'a, K: FromIndexKey> IndexedIndicatorConstraint<'a, K>
impl<'a, K: FromIndexKey> IndexedIndicatorConstraint<'a, K>
pub fn iter( &self, ) -> impl Iterator<Item = (K, IndicatorConstraintHandle<'a>)> + '_
Trait Implementations§
Source§impl<'a, K: Clone> Clone for IndexedIndicatorConstraint<'a, K>
impl<'a, K: Clone> Clone for IndexedIndicatorConstraint<'a, K>
Auto Trait Implementations§
impl<'a, K = IndexKey> !RefUnwindSafe for IndexedIndicatorConstraint<'a, K>
impl<'a, K = IndexKey> !Send for IndexedIndicatorConstraint<'a, K>
impl<'a, K = IndexKey> !Sync for IndexedIndicatorConstraint<'a, K>
impl<'a, K = IndexKey> !UnwindSafe for IndexedIndicatorConstraint<'a, K>
impl<'a, K> Freeze for IndexedIndicatorConstraint<'a, K>
impl<'a, K> Unpin for IndexedIndicatorConstraint<'a, K>
impl<'a, K> UnsafeUnpin for IndexedIndicatorConstraint<'a, K>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more