pub struct NoteJson {
pub decision: Option<&'static str>,
pub message: &'static str,
}Expand description
One note: the governing N-decision (or null) and a human-readable message.
Fields§
§decision: Option<&'static str>N-decision id in docs/normalize-notes.md, e.g. “N3”.
message: &'static strShort explanation of the mapping.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NoteJson
impl RefUnwindSafe for NoteJson
impl Send for NoteJson
impl Sync for NoteJson
impl Unpin for NoteJson
impl UnsafeUnpin for NoteJson
impl UnwindSafe for NoteJson
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