pub enum Tuple1<T0: DafnyType> {
_T1 {
_0: T0,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl<T0: DafnyType> DafnyPrint for Tuple1<T0>
impl<T0: DafnyType> DafnyPrint for Tuple1<T0>
impl<T0: DafnyType + Eq> Eq for Tuple1<T0>
impl<T0: DafnyType> StructuralPartialEq for Tuple1<T0>
Auto Trait Implementations§
impl<T0> Freeze for Tuple1<T0>where
T0: Freeze,
impl<T0> RefUnwindSafe for Tuple1<T0>where
T0: RefUnwindSafe,
impl<T0> Send for Tuple1<T0>where
T0: Send,
impl<T0> Sync for Tuple1<T0>where
T0: Sync,
impl<T0> Unpin for Tuple1<T0>where
T0: Unpin,
impl<T0> UnwindSafe for Tuple1<T0>where
T0: 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
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