feldera_types

Macro deserialize_without_context

Source
macro_rules! deserialize_without_context {
    ($typ:tt) => { ... };
    ($typ:tt, $($arg:tt),*) => { ... };
}
Expand description

Implement DeserializeWithContext for types that implement Deserialize and don’t support configurable deserialization.

The implementation invokes Deserialize::deserialize, ignoring the context.