pub struct InterpretationJson {
pub edtf: String,
pub level: u8,
pub reading: String,
pub notes: Vec<NoteJson>,
}Expand description
One reading of an ambiguous input.
Fields§
§edtf: StringCanonical EDTF for this reading.
level: u8Its conformance level.
reading: StringWhich reading this is (“day-month-year”, “century (19XX)”, …).
notes: Vec<NoteJson>Why this reading exists.
Trait Implementations§
Source§impl Debug for InterpretationJson
impl Debug for InterpretationJson
Auto Trait Implementations§
impl Freeze for InterpretationJson
impl RefUnwindSafe for InterpretationJson
impl Send for InterpretationJson
impl Sync for InterpretationJson
impl Unpin for InterpretationJson
impl UnsafeUnpin for InterpretationJson
impl UnwindSafe for InterpretationJson
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