pub struct TranslationMapping {
pub source_symbol: String,
pub target_symbol: Option<String>,
pub status: TranslationStatus,
pub notes: Option<String>,
}Expand description
A mapping from a single source symbol to its target counterpart.
Fields§
§source_symbol: StringName of the symbol in the source context.
target_symbol: Option<String>Name of the corresponding symbol in the target context, if one exists.
status: TranslationStatusCurrent porting status.
notes: Option<String>Free-form notes (e.g., “needs manual review”, “API changed”).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TranslationMapping
impl RefUnwindSafe for TranslationMapping
impl Send for TranslationMapping
impl Sync for TranslationMapping
impl Unpin for TranslationMapping
impl UnsafeUnpin for TranslationMapping
impl UnwindSafe for TranslationMapping
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