pub struct TupleVisitor9<T0, T1, T2, T3, T4, T5, T6, T7, T8> {
// some fields omitted
}
Construct a tuple visitor.
Methods
fn new() -> Self
[−]
Construct a TupleVisitor*<T>
.
Trait Implementations
type Value = (T0, T1, T2, T3, T4, T5, T6, T7, T8)
fn visit_seq<V>(&mut self, visitor: V) -> Result<(T0, T1, T2, T3, T4, T5, T6, T7, T8), V::Error> where V: SeqVisitor
fn visit_some<D>(&mut self, _deserializer: &mut D) -> Result<Self::Value, D::Error> where D: Deserializer
fn visit_map<V>(&mut self, _visitor: V) -> Result<Self::Value, V::Error> where V: MapVisitor