pub enum ConversionStage {
Analysis,
SourceReader,
TargetWriter,
}Expand description
The pipeline stage where a conversion issue originates.
Variants§
Analysis
Lossiness analysis (warnings about data loss).
SourceReader
Source format reader policy.
TargetWriter
Target format writer policy.
Trait Implementations§
Source§impl Clone for ConversionStage
impl Clone for ConversionStage
Source§fn clone(&self) -> ConversionStage
fn clone(&self) -> ConversionStage
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 moreimpl Copy for ConversionStage
Source§impl Debug for ConversionStage
impl Debug for ConversionStage
impl Eq for ConversionStage
Source§impl PartialEq for ConversionStage
impl PartialEq for ConversionStage
Source§impl Serialize for ConversionStage
impl Serialize for ConversionStage
impl StructuralPartialEq for ConversionStage
Auto Trait Implementations§
impl Freeze for ConversionStage
impl RefUnwindSafe for ConversionStage
impl Send for ConversionStage
impl Sync for ConversionStage
impl Unpin for ConversionStage
impl UnsafeUnpin for ConversionStage
impl UnwindSafe for ConversionStage
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.