Trait spacetimedb_lib::de::MapVisitor
source · pub trait MapVisitor<'de, K, V> {
type Output;
// Required method
fn visit<A>(
self,
map: A
) -> Result<Self::Output, <A as MapAccess<'de>>::Error>
where A: MapAccess<'de, Key = K, Value = V>;
}Expand description
A visitor walking through a Deserializer for maps.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.