pub struct Decomposition {
pub kanji: char,
pub radicals: &'static [char],
}Expand description
The constituent radicals for a kanji
Fields§
§kanji: charThe kanji
radicals: &'static [char]The radicals contained in the kanji
Auto Trait Implementations§
impl Freeze for Decomposition
impl RefUnwindSafe for Decomposition
impl Send for Decomposition
impl Sync for Decomposition
impl Unpin for Decomposition
impl UnwindSafe for Decomposition
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