pub struct TypeChange {
pub old_type: String,
pub new_type: String,
}Expand description
Type change (old and new)
Fields§
§old_type: String§new_type: StringTrait 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
Source§impl<'de> Deserialize<'de> for TypeChange
impl<'de> Deserialize<'de> for TypeChange
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TypeChange
Source§impl PartialEq for TypeChange
impl PartialEq for TypeChange
Source§fn eq(&self, other: &TypeChange) -> bool
fn eq(&self, other: &TypeChange) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TypeChange
impl Serialize for TypeChange
impl StructuralPartialEq 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