pub enum ProcessorOutput {
MuxedFile {
path: PathBuf,
format: OutputFormat,
},
Skipped,
}Variants§
Trait Implementations§
Source§impl Clone for ProcessorOutput
impl Clone for ProcessorOutput
Source§fn clone(&self) -> ProcessorOutput
fn clone(&self) -> ProcessorOutput
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 ProcessorOutput
impl Debug for ProcessorOutput
Source§impl<'de> Deserialize<'de> for ProcessorOutput
impl<'de> Deserialize<'de> for ProcessorOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ProcessorOutput
Source§impl PartialEq for ProcessorOutput
impl PartialEq for ProcessorOutput
Source§impl Serialize for ProcessorOutput
impl Serialize for ProcessorOutput
impl StructuralPartialEq for ProcessorOutput
Auto Trait Implementations§
impl Freeze for ProcessorOutput
impl RefUnwindSafe for ProcessorOutput
impl Send for ProcessorOutput
impl Sync for ProcessorOutput
impl Unpin for ProcessorOutput
impl UnsafeUnpin for ProcessorOutput
impl UnwindSafe for ProcessorOutput
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