pub trait SerializeFilter<T: ?Sized> {
    fn skip(&self, field: Field<T>) -> bool;
}
Expand description

Trait implemented by types which can be used to filter the serializable fields of another type.

Required Methods§

Returns whether the specified field should be skipped.

Implementors§