pub struct PathConfigEntry {
pub match_: String,
pub content_type: Option<String>,
pub rule: Option<String>,
pub shape: Option<TabularShapeConfig>,
pub dialect: Option<CsvDialectConfig>,
pub records_path: Option<String>,
pub row_identity: Option<RowIdentityPatch>,
pub node_identity: Option<NodeIdentity>,
pub unknown_fields: Vec<String>,
}Fields§
§match_: String§content_type: Option<String>§rule: Option<String>§shape: Option<TabularShapeConfig>§dialect: Option<CsvDialectConfig>§records_path: Option<String>§row_identity: Option<RowIdentityPatch>§node_identity: Option<NodeIdentity>§unknown_fields: Vec<String>Trait Implementations§
Source§impl Clone for PathConfigEntry
impl Clone for PathConfigEntry
Source§fn clone(&self) -> PathConfigEntry
fn clone(&self) -> PathConfigEntry
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 PathConfigEntry
impl Debug for PathConfigEntry
Source§impl Default for PathConfigEntry
impl Default for PathConfigEntry
Source§fn default() -> PathConfigEntry
fn default() -> PathConfigEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PathConfigEntry
impl<'de> Deserialize<'de> for PathConfigEntry
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 PathConfigEntry
impl RefUnwindSafe for PathConfigEntry
impl Send for PathConfigEntry
impl Sync for PathConfigEntry
impl Unpin for PathConfigEntry
impl UnsafeUnpin for PathConfigEntry
impl UnwindSafe for PathConfigEntry
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