#[non_exhaustive]pub struct Loss {
pub path: String,
pub kind: LossKind,
pub detail: String,
}Expand description
One thing the conversion changed or discarded.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.path: StringWhere it happened, as a JSON-ish path into the source document, e.g.
"Observation.component[1].valueAttachment".
kind: LossKindWhat happened.
detail: StringThe specifics — the offending type name, the two value-set URLs, the number of entries dropped.
Trait Implementations§
impl Eq for Loss
impl StructuralPartialEq for Loss
Auto Trait Implementations§
impl Freeze for Loss
impl RefUnwindSafe for Loss
impl Send for Loss
impl Sync for Loss
impl Unpin for Loss
impl UnsafeUnpin for Loss
impl UnwindSafe for Loss
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