pub struct AirbyteRecordMessageMetaChange {
pub change: String,
pub field: String,
pub reason: String,
}
Fields§
§change: String
The type of change that occurred
field: String
The field that had the change occur (required)
reason: String
The reason that the change occurred
Trait Implementations§
Source§impl Clone for AirbyteRecordMessageMetaChange
impl Clone for AirbyteRecordMessageMetaChange
Source§fn clone(&self) -> AirbyteRecordMessageMetaChange
fn clone(&self) -> AirbyteRecordMessageMetaChange
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<'de> Deserialize<'de> for AirbyteRecordMessageMetaChange
impl<'de> Deserialize<'de> for AirbyteRecordMessageMetaChange
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
Source§impl PartialEq for AirbyteRecordMessageMetaChange
impl PartialEq for AirbyteRecordMessageMetaChange
Source§fn eq(&self, other: &AirbyteRecordMessageMetaChange) -> bool
fn eq(&self, other: &AirbyteRecordMessageMetaChange) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AirbyteRecordMessageMetaChange
Auto Trait Implementations§
impl Freeze for AirbyteRecordMessageMetaChange
impl RefUnwindSafe for AirbyteRecordMessageMetaChange
impl Send for AirbyteRecordMessageMetaChange
impl Sync for AirbyteRecordMessageMetaChange
impl Unpin for AirbyteRecordMessageMetaChange
impl UnwindSafe for AirbyteRecordMessageMetaChange
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