struct Report {
missing_in_rust: Vec<Event>,
not_in_union: Vec<RustEvent>,
not_in_upstream: Vec<RustEvent>,
field_diffs: Vec<FieldDiff>,
base_event: Option<BaseEventDiff>,
warnings: Vec<String>,
}Expand description
Everything the offline comparison found.
Fields§
§missing_in_rust: Vec<Event>§not_in_union: Vec<RustEvent>Declared in Rust, but not a member of the tagged union.
not_in_upstream: Vec<RustEvent>§field_diffs: Vec<FieldDiff>§base_event: Option<BaseEventDiff>The envelope both sides flatten into every event, when it disagrees.
warnings: Vec<String>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnsafeUnpin for Report
impl UnwindSafe for Report
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