pub struct FormatChange {
pub field: String,
pub old_format: String,
pub new_format: String,
}Expand description
Format change in integration upgrade.
Fields§
§field: StringField affected.
old_format: StringOld format.
new_format: StringNew format.
Trait Implementations§
Source§impl Clone for FormatChange
impl Clone for FormatChange
Source§fn clone(&self) -> FormatChange
fn clone(&self) -> FormatChange
Returns a duplicate of the value. Read more
1.0.0 · 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 FormatChange
impl Debug for FormatChange
Source§impl<'de> Deserialize<'de> for FormatChange
impl<'de> Deserialize<'de> for FormatChange
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
Auto Trait Implementations§
impl Freeze for FormatChange
impl RefUnwindSafe for FormatChange
impl Send for FormatChange
impl Sync for FormatChange
impl Unpin for FormatChange
impl UnwindSafe for FormatChange
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