pub trait MayBeSkipped {
    fn may_be_skipped(&self) -> bool;
}
Expand description

A trait indicating that the content may be skipped during serialization if allowed.

Required Methods

Tell whether the content may be skipped.

Implementations on Foreign Types

Implementors