pub struct NamedEntity<'a> {
pub word: Vec<&'a str>,
pub tag: Vec<&'a str>,
pub entity: Vec<(usize, usize, &'static str)>,
}Fields§
§word: Vec<&'a str>§tag: Vec<&'a str>§entity: Vec<(usize, usize, &'static str)>Trait Implementations§
Source§impl<'a> Clone for NamedEntity<'a>
impl<'a> Clone for NamedEntity<'a>
Source§fn clone(&self) -> NamedEntity<'a>
fn clone(&self) -> NamedEntity<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for NamedEntity<'a>
impl<'a> Debug for NamedEntity<'a>
Source§impl<'a> PartialEq for NamedEntity<'a>
impl<'a> PartialEq for NamedEntity<'a>
impl<'a> StructuralPartialEq for NamedEntity<'a>
Auto Trait Implementations§
impl<'a> Freeze for NamedEntity<'a>
impl<'a> RefUnwindSafe for NamedEntity<'a>
impl<'a> Send for NamedEntity<'a>
impl<'a> Sync for NamedEntity<'a>
impl<'a> Unpin for NamedEntity<'a>
impl<'a> UnwindSafe for NamedEntity<'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