pub struct AnnotationEntity {
pub start: isize,
pub end: isize,
pub probability: f64,
pub kind: String,
pub normalized_text: String,
}Fields§
§start: isize§end: isize§probability: f64§kind: String§normalized_text: StringTrait Implementations§
Source§impl Clone for AnnotationEntity
impl Clone for AnnotationEntity
Source§fn clone(&self) -> AnnotationEntity
fn clone(&self) -> AnnotationEntity
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 Debug for AnnotationEntity
impl Debug for AnnotationEntity
Source§impl<'de> Deserialize<'de> for AnnotationEntity
impl<'de> Deserialize<'de> for AnnotationEntity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AnnotationEntity
impl PartialEq for AnnotationEntity
Source§impl Serialize for AnnotationEntity
impl Serialize for AnnotationEntity
impl StructuralPartialEq for AnnotationEntity
Auto Trait Implementations§
impl Freeze for AnnotationEntity
impl RefUnwindSafe for AnnotationEntity
impl Send for AnnotationEntity
impl Sync for AnnotationEntity
impl Unpin for AnnotationEntity
impl UnwindSafe for AnnotationEntity
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