pub enum Tuple3<T0: DafnyType, T1: DafnyType, T2: DafnyType> {
_T3 {
_0: T0,
_1: T1,
_2: T2,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl<T0: DafnyType, T1: DafnyType, T2: DafnyType> AsRef<Tuple3<T0, T1, T2>> for Tuple3<T0, T1, T2>
impl<T0: DafnyType, T1: DafnyType, T2: DafnyType> AsRef<Tuple3<T0, T1, T2>> for Tuple3<T0, T1, T2>
Source§impl<T0: Clone + DafnyType, T1: Clone + DafnyType, T2: Clone + DafnyType> Clone for Tuple3<T0, T1, T2>
impl<T0: Clone + DafnyType, T1: Clone + DafnyType, T2: Clone + DafnyType> Clone for Tuple3<T0, T1, T2>
Source§impl<T0: DafnyType + Default, T1: DafnyType + Default, T2: DafnyType + Default> Default for Tuple3<T0, T1, T2>
impl<T0: DafnyType + Default, T1: DafnyType + Default, T2: DafnyType + Default> Default for Tuple3<T0, T1, T2>
Source§impl<T0: DafnyType + Hash, T1: DafnyType + Hash, T2: DafnyType + Hash> Hash for Tuple3<T0, T1, T2>
impl<T0: DafnyType + Hash, T1: DafnyType + Hash, T2: DafnyType + Hash> Hash for Tuple3<T0, T1, T2>
Source§impl<T0: PartialEq + DafnyType, T1: PartialEq + DafnyType, T2: PartialEq + DafnyType> PartialEq for Tuple3<T0, T1, T2>
impl<T0: PartialEq + DafnyType, T1: PartialEq + DafnyType, T2: PartialEq + DafnyType> PartialEq for Tuple3<T0, T1, T2>
impl<T0: DafnyType + Eq, T1: DafnyType + Eq, T2: DafnyType + Eq> Eq for Tuple3<T0, T1, T2>
impl<T0: DafnyType, T1: DafnyType, T2: DafnyType> StructuralPartialEq for Tuple3<T0, T1, T2>
Auto Trait Implementations§
impl<T0, T1, T2> Freeze for Tuple3<T0, T1, T2>
impl<T0, T1, T2> RefUnwindSafe for Tuple3<T0, T1, T2>
impl<T0, T1, T2> Send for Tuple3<T0, T1, T2>
impl<T0, T1, T2> Sync for Tuple3<T0, T1, T2>
impl<T0, T1, T2> Unpin for Tuple3<T0, T1, T2>
impl<T0, T1, T2> UnwindSafe for Tuple3<T0, T1, T2>
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