pub struct Token {
pub word: String,
pub orp_index: usize,
pub byte_offset: usize,
pub byte_len: usize,
pub is_sentence_end: bool,
}Expand description
Токен — одно слово с метаданными для RSVP.
Fields§
§word: String§orp_index: usize§byte_offset: usize§byte_len: usize§is_sentence_end: boolTrait Implementations§
impl StructuralPartialEq for Token
Auto Trait Implementations§
impl Freeze for Token
impl RefUnwindSafe for Token
impl Send for Token
impl Sync for Token
impl Unpin for Token
impl UnsafeUnpin for Token
impl UnwindSafe for Token
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