pub struct UpdateIntegrationFieldMapping {
pub destination_field: Option<String>,
pub template: Option<String>,
pub transform: Option<FieldTransform>,
pub fallback: Option<String>,
pub is_active: Option<bool>,
}Expand description
Input for updating a field mapping (partial).
Fields§
§destination_field: Option<String>Updated destination field.
template: Option<String>Updated template.
transform: Option<FieldTransform>Updated transform.
fallback: Option<String>Updated fallback.
is_active: Option<bool>Updated active state.
Trait Implementations§
Source§impl Clone for UpdateIntegrationFieldMapping
impl Clone for UpdateIntegrationFieldMapping
Source§fn clone(&self) -> UpdateIntegrationFieldMapping
fn clone(&self) -> UpdateIntegrationFieldMapping
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 Default for UpdateIntegrationFieldMapping
impl Default for UpdateIntegrationFieldMapping
Source§fn default() -> UpdateIntegrationFieldMapping
fn default() -> UpdateIntegrationFieldMapping
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateIntegrationFieldMapping
impl<'de> Deserialize<'de> for UpdateIntegrationFieldMapping
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 UpdateIntegrationFieldMapping
impl RefUnwindSafe for UpdateIntegrationFieldMapping
impl Send for UpdateIntegrationFieldMapping
impl Sync for UpdateIntegrationFieldMapping
impl Unpin for UpdateIntegrationFieldMapping
impl UnsafeUnpin for UpdateIntegrationFieldMapping
impl UnwindSafe for UpdateIntegrationFieldMapping
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