pub enum SectionResult {
Processed,
Ignored,
Failed(String),
}Available on crate feature
plugins only.Expand description
Result of section processing operations
Variants§
Processed
Section was successfully processed
Ignored
Section was ignored (not handled by this processor)
Failed(String)
Section processing failed with error message
Trait Implementations§
Source§impl Clone for SectionResult
impl Clone for SectionResult
Source§fn clone(&self) -> SectionResult
fn clone(&self) -> SectionResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SectionResult
impl Debug for SectionResult
impl Eq for SectionResult
Source§impl PartialEq for SectionResult
impl PartialEq for SectionResult
Source§fn eq(&self, other: &SectionResult) -> bool
fn eq(&self, other: &SectionResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SectionResult
Auto Trait Implementations§
impl Freeze for SectionResult
impl RefUnwindSafe for SectionResult
impl Send for SectionResult
impl Sync for SectionResult
impl Unpin for SectionResult
impl UnsafeUnpin for SectionResult
impl UnwindSafe for SectionResult
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