pub struct TranslationWarning {
pub field: String,
pub message: String,
}Expand description
A single field-level data-loss warning produced during translation.
Warnings indicate that a field was truncated, approximated, or could not be fully represented in the target format but did not prevent translation from completing.
Fields§
§field: StringThe source or target field name, e.g. ":72:" or "CdtTrfTxInf.RmtInf".
message: StringA human-readable description of what was lost or approximated.
Trait Implementations§
Source§impl Clone for TranslationWarning
impl Clone for TranslationWarning
Source§fn clone(&self) -> TranslationWarning
fn clone(&self) -> TranslationWarning
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 TranslationWarning
impl Debug for TranslationWarning
Source§impl PartialEq for TranslationWarning
impl PartialEq for TranslationWarning
impl StructuralPartialEq for TranslationWarning
Auto Trait Implementations§
impl Freeze for TranslationWarning
impl RefUnwindSafe for TranslationWarning
impl Send for TranslationWarning
impl Sync for TranslationWarning
impl Unpin for TranslationWarning
impl UnsafeUnpin for TranslationWarning
impl UnwindSafe for TranslationWarning
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