pub struct MappingEntry {
pub source_path: Option<String>,
pub source_table: Option<String>,
pub source_type: Option<String>,
pub target_path: Option<String>,
pub target_table: Option<String>,
pub target_type: Option<String>,
}
Expand description
Defines a mapping.
Fields§
§source_path: Option<String>
The source path.
source_table: Option<String>
The name of the source table.
source_type: Option<String>
The source type.
target_path: Option<String>
The target path.
target_table: Option<String>
The target table.
target_type: Option<String>
The target type.
Trait Implementations§
Source§impl Clone for MappingEntry
impl Clone for MappingEntry
Source§fn clone(&self) -> MappingEntry
fn clone(&self) -> MappingEntry
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 MappingEntry
impl Debug for MappingEntry
Source§impl Default for MappingEntry
impl Default for MappingEntry
Source§fn default() -> MappingEntry
fn default() -> MappingEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MappingEntry
impl<'de> Deserialize<'de> for MappingEntry
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 MappingEntry
impl PartialEq for MappingEntry
Source§impl Serialize for MappingEntry
impl Serialize for MappingEntry
impl StructuralPartialEq for MappingEntry
Auto Trait Implementations§
impl Freeze for MappingEntry
impl RefUnwindSafe for MappingEntry
impl Send for MappingEntry
impl Sync for MappingEntry
impl Unpin for MappingEntry
impl UnwindSafe for MappingEntry
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