pub trait MayBeSkipped {
// Required method
fn may_be_skipped(&self) -> bool;
}Expand description
A trait indicating that the content may be skipped during serialization if allowed.
Required Methods§
Sourcefn may_be_skipped(&self) -> bool
fn may_be_skipped(&self) -> bool
Tell whether the content may be skipped.