pub struct TypeChange {
pub path: String,
pub baseline_type: String,
pub current_type: String,
}Expand description
A single field type change between baseline and current.
Fields§
§path: StringDot-separated field path.
baseline_type: StringType in the baseline.
current_type: StringType in the current response.
Trait Implementations§
Source§impl Clone for TypeChange
impl Clone for TypeChange
Source§fn clone(&self) -> TypeChange
fn clone(&self) -> TypeChange
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TypeChange
impl Debug for TypeChange
Auto Trait Implementations§
impl Freeze for TypeChange
impl RefUnwindSafe for TypeChange
impl Send for TypeChange
impl Sync for TypeChange
impl Unpin for TypeChange
impl UnsafeUnpin for TypeChange
impl UnwindSafe for TypeChange
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