pub struct FstLoanwordMatch<'a> {
pub roman_input: &'a str,
pub roman_repair: &'a str,
pub bangla_output: &'a str,
pub frequency: u64,
pub repair_kind: &'static str,
pub repair_cost: u16,
}Fields§
§roman_input: &'a str§roman_repair: &'a str§bangla_output: &'a str§frequency: u64§repair_kind: &'static str§repair_cost: u16Trait Implementations§
Source§impl<'a> Clone for FstLoanwordMatch<'a>
impl<'a> Clone for FstLoanwordMatch<'a>
Source§fn clone(&self) -> FstLoanwordMatch<'a>
fn clone(&self) -> FstLoanwordMatch<'a>
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<'a> Copy for FstLoanwordMatch<'a>
Auto Trait Implementations§
impl<'a> Freeze for FstLoanwordMatch<'a>
impl<'a> RefUnwindSafe for FstLoanwordMatch<'a>
impl<'a> Send for FstLoanwordMatch<'a>
impl<'a> Sync for FstLoanwordMatch<'a>
impl<'a> Unpin for FstLoanwordMatch<'a>
impl<'a> UnsafeUnpin for FstLoanwordMatch<'a>
impl<'a> UnwindSafe for FstLoanwordMatch<'a>
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