pub enum SkipHandling {
Include,
Exclude,
}Expand description
Controls whether SegmentType::Skip segments are emitted by
ReadStructure::extract.
Variants§
Include
Emit every segment, including those of type SegmentType::Skip.
Exclude
Skip over SegmentType::Skip segments in the output iterator.
Trait Implementations§
Source§impl Clone for SkipHandling
impl Clone for SkipHandling
Source§fn clone(&self) -> SkipHandling
fn clone(&self) -> SkipHandling
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SkipHandling
impl Debug for SkipHandling
Source§impl Hash for SkipHandling
impl Hash for SkipHandling
Source§impl PartialEq for SkipHandling
impl PartialEq for SkipHandling
impl Copy for SkipHandling
impl Eq for SkipHandling
impl StructuralPartialEq for SkipHandling
Auto Trait Implementations§
impl Freeze for SkipHandling
impl RefUnwindSafe for SkipHandling
impl Send for SkipHandling
impl Sync for SkipHandling
impl Unpin for SkipHandling
impl UnsafeUnpin for SkipHandling
impl UnwindSafe for SkipHandling
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more