pub struct ZoneShape {
pub name: String,
pub class: ParityClass,
pub diffs: Vec<&'static str>,
pub ours: Shape,
pub theirs: Shape,
}Expand description
One canonical zone’s structural comparison.
Fields§
§name: String§class: ParityClass§diffs: Vec<&'static str>The differing dimensions (empty when byte-identical or structurally-equivalent).
ours: Shape§theirs: ShapeTrait Implementations§
Auto Trait Implementations§
impl Freeze for ZoneShape
impl RefUnwindSafe for ZoneShape
impl Send for ZoneShape
impl Sync for ZoneShape
impl Unpin for ZoneShape
impl UnsafeUnpin for ZoneShape
impl UnwindSafe for ZoneShape
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