pub struct NormalizationWarning {
pub code: String,
pub message: String,
pub stated_ref: String,
pub actual_ref: String,
pub position: String,
pub corrected: bool,
}Expand description
Warning generated during normalization
Fields§
§code: StringWarning code (e.g., “REFSEQ_MISMATCH”)
message: StringHuman-readable description
stated_ref: StringWhat the input claimed as reference
actual_ref: StringWhat the actual reference sequence has
position: StringPosition info
corrected: boolWhether the mismatch was auto-corrected
Trait Implementations§
Source§impl Clone for NormalizationWarning
impl Clone for NormalizationWarning
Source§fn clone(&self) -> NormalizationWarning
fn clone(&self) -> NormalizationWarning
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 moreAuto Trait Implementations§
impl Freeze for NormalizationWarning
impl RefUnwindSafe for NormalizationWarning
impl Send for NormalizationWarning
impl Sync for NormalizationWarning
impl Unpin for NormalizationWarning
impl UnsafeUnpin for NormalizationWarning
impl UnwindSafe for NormalizationWarning
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