pub struct ElementMappingConfigDto {
pub element_type: ElementTypeDto,
pub operation: OperationTypeDto,
pub template: ElementTemplateDto,
}Expand description
Element mapping configuration DTO.
Fields§
§element_type: ElementTypeDtoType of element to create.
operation: OperationTypeDtoOperation type for the source change (default: update for idempotent bootstrap).
template: ElementTemplateDtoTemplate for element creation.
Trait Implementations§
Source§impl Clone for ElementMappingConfigDto
impl Clone for ElementMappingConfigDto
Source§fn clone(&self) -> ElementMappingConfigDto
fn clone(&self) -> ElementMappingConfigDto
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 ElementMappingConfigDto
impl Debug for ElementMappingConfigDto
Source§impl<'de> Deserialize<'de> for ElementMappingConfigDto
impl<'de> Deserialize<'de> for ElementMappingConfigDto
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 ElementMappingConfigDto
impl PartialEq for ElementMappingConfigDto
Source§fn eq(&self, other: &ElementMappingConfigDto) -> bool
fn eq(&self, other: &ElementMappingConfigDto) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ElementMappingConfigDto
impl Serialize for ElementMappingConfigDto
impl StructuralPartialEq for ElementMappingConfigDto
Auto Trait Implementations§
impl Freeze for ElementMappingConfigDto
impl RefUnwindSafe for ElementMappingConfigDto
impl Send for ElementMappingConfigDto
impl Sync for ElementMappingConfigDto
impl Unpin for ElementMappingConfigDto
impl UnsafeUnpin for ElementMappingConfigDto
impl UnwindSafe for ElementMappingConfigDto
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