pub struct XmlReadSettings {
pub compression_properties: Option<CompressionReadSettingsUnion>,
pub validation_mode: Option<Value>,
pub detect_data_type: Option<Value>,
pub namespaces: Option<Value>,
pub namespace_prefixes: Option<Value>,
}Expand description
Xml read settings.
Fields§
§compression_properties: Option<CompressionReadSettingsUnion>Compression read settings.
validation_mode: Option<Value>Indicates what validation method is used when reading the xml files. Allowed values: ‘none’, ‘xsd’, or ‘dtd’. Type: string (or Expression with resultType string).
detect_data_type: Option<Value>Indicates whether type detection is enabled when reading the xml files. Type: boolean (or Expression with resultType boolean).
namespaces: Option<Value>Indicates whether namespace is enabled when reading the xml files. Type: boolean (or Expression with resultType boolean).
namespace_prefixes: Option<Value>Namespace uri to prefix mappings to override the prefixes in column names when namespace is enabled, if no prefix is defined for a namespace uri, the prefix of xml element/attribute name in the xml data file will be used. Example: “{“http://www.example.com/xml”:“prefix”}“ Type: object (or Expression with resultType object).
Implementations§
Trait Implementations§
Source§impl Clone for XmlReadSettings
impl Clone for XmlReadSettings
Source§fn clone(&self) -> XmlReadSettings
fn clone(&self) -> XmlReadSettings
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more