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.

Implementations on Foreign Types§

Implementors§