Struct TupleValueTree
struct TupleValueTree<T> { ... }
Common ValueTree implementation for all tuple strategies.
Implementations
impl<T> TupleValueTree<T>
fn new(inner: T) -> SelfCreate a new
TupleValueTreewrappinginner.It only makes sense for
innerto be a tuple of an arity for which the type implementsValueTree.
impl<A: ValueTree> ValueTree for TupleValueTree<(A)>
fn current(self: &Self) -> <Self as >::Valuefn simplify(self: &mut Self) -> boolfn complicate(self: &mut Self) -> bool
impl<A: ValueTree, B: ValueTree> ValueTree for TupleValueTree<(A, B)>
fn current(self: &Self) -> <Self as >::Valuefn simplify(self: &mut Self) -> boolfn complicate(self: &mut Self) -> bool
impl<A: ValueTree, B: ValueTree, C: ValueTree> ValueTree for TupleValueTree<(A, B, C)>
fn current(self: &Self) -> <Self as >::Valuefn simplify(self: &mut Self) -> boolfn complicate(self: &mut Self) -> bool
impl<A: ValueTree, B: ValueTree, C: ValueTree, D: ValueTree> ValueTree for TupleValueTree<(A, B, C, D)>
fn current(self: &Self) -> <Self as >::Valuefn simplify(self: &mut Self) -> boolfn complicate(self: &mut Self) -> bool
impl<A: ValueTree, B: ValueTree, C: ValueTree, D: ValueTree, E: ValueTree> ValueTree for TupleValueTree<(A, B, C, D, E)>
fn current(self: &Self) -> <Self as >::Valuefn simplify(self: &mut Self) -> boolfn complicate(self: &mut Self) -> bool
impl<A: ValueTree, B: ValueTree, C: ValueTree, D: ValueTree, E: ValueTree, F: ValueTree> ValueTree for TupleValueTree<(A, B, C, D, E, F)>
fn current(self: &Self) -> <Self as >::Valuefn simplify(self: &mut Self) -> boolfn complicate(self: &mut Self) -> bool
impl<A: ValueTree, B: ValueTree, C: ValueTree, D: ValueTree, E: ValueTree, F: ValueTree, G: ValueTree> ValueTree for TupleValueTree<(A, B, C, D, E, F, G)>
fn current(self: &Self) -> <Self as >::Valuefn simplify(self: &mut Self) -> boolfn complicate(self: &mut Self) -> bool
impl<A: ValueTree, B: ValueTree, C: ValueTree, D: ValueTree, E: ValueTree, F: ValueTree, G: ValueTree, H: ValueTree> ValueTree for TupleValueTree<(A, B, C, D, E, F, G, H)>
fn current(self: &Self) -> <Self as >::Valuefn simplify(self: &mut Self) -> boolfn complicate(self: &mut Self) -> bool
impl<A: ValueTree, B: ValueTree, C: ValueTree, D: ValueTree, E: ValueTree, F: ValueTree, G: ValueTree, H: ValueTree, I: ValueTree> ValueTree for TupleValueTree<(A, B, C, D, E, F, G, H, I)>
fn current(self: &Self) -> <Self as >::Valuefn simplify(self: &mut Self) -> boolfn complicate(self: &mut Self) -> bool
impl<A: ValueTree, B: ValueTree, C: ValueTree, D: ValueTree, E: ValueTree, F: ValueTree, G: ValueTree, H: ValueTree, I: ValueTree, J: ValueTree> ValueTree for TupleValueTree<(A, B, C, D, E, F, G, H, I, J)>
fn current(self: &Self) -> <Self as >::Valuefn simplify(self: &mut Self) -> boolfn complicate(self: &mut Self) -> bool
impl<A: ValueTree, B: ValueTree, C: ValueTree, D: ValueTree, E: ValueTree, F: ValueTree, G: ValueTree, H: ValueTree, I: ValueTree, J: ValueTree, K: ValueTree> ValueTree for TupleValueTree<(A, B, C, D, E, F, G, H, I, J, K)>
fn current(self: &Self) -> <Self as >::Valuefn simplify(self: &mut Self) -> boolfn complicate(self: &mut Self) -> bool
impl<A: ValueTree, B: ValueTree, C: ValueTree, D: ValueTree, E: ValueTree, F: ValueTree, G: ValueTree, H: ValueTree, I: ValueTree, J: ValueTree, K: ValueTree, L: ValueTree> ValueTree for TupleValueTree<(A, B, C, D, E, F, G, H, I, J, K, L)>
fn current(self: &Self) -> <Self as >::Valuefn simplify(self: &mut Self) -> boolfn complicate(self: &mut Self) -> bool
impl<T> Any for TupleValueTree<T>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for TupleValueTree<T>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for TupleValueTree<T>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for TupleValueTree<T>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> Freeze for TupleValueTree<T>
impl<T> From for TupleValueTree<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> RefUnwindSafe for TupleValueTree<T>
impl<T> Send for TupleValueTree<T>
impl<T> Sync for TupleValueTree<T>
impl<T> ToOwned for TupleValueTree<T>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T> Unpin for TupleValueTree<T>
impl<T> UnwindSafe for TupleValueTree<T>
impl<T, U> Into for TupleValueTree<T>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for TupleValueTree<T>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for TupleValueTree<T>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>
impl<T: $crate::clone::Clone> Clone for TupleValueTree<T>
fn clone(self: &Self) -> TupleValueTree<T>
impl<T: $crate::fmt::Debug> Debug for TupleValueTree<T>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<T: $crate::marker::Copy> Copy for TupleValueTree<T>
impl<V, T> VZip for TupleValueTree<T>
fn vzip(self: Self) -> V