pub struct DictionaryReadingPath {
pub segments: Vec<DictionaryReadingSegment>,
pub joined_reading: String,
}Expand description
One complete segmentation and joined reading for an input string.
Fields§
§segments: Vec<DictionaryReadingSegment>Ordered dictionary/direct segments in the path.
joined_reading: StringSegment readings concatenated into one reading string.
Trait Implementations§
Source§impl Clone for DictionaryReadingPath
impl Clone for DictionaryReadingPath
Source§fn clone(&self) -> DictionaryReadingPath
fn clone(&self) -> DictionaryReadingPath
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 moreSource§impl Debug for DictionaryReadingPath
impl Debug for DictionaryReadingPath
impl Eq for DictionaryReadingPath
Source§impl PartialEq for DictionaryReadingPath
impl PartialEq for DictionaryReadingPath
impl StructuralPartialEq for DictionaryReadingPath
Auto Trait Implementations§
impl Freeze for DictionaryReadingPath
impl RefUnwindSafe for DictionaryReadingPath
impl Send for DictionaryReadingPath
impl Sync for DictionaryReadingPath
impl Unpin for DictionaryReadingPath
impl UnsafeUnpin for DictionaryReadingPath
impl UnwindSafe for DictionaryReadingPath
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.