pub struct EtlDataSystem {
pub system_id: Option<String>,
pub path: Option<String>,
pub include_patterns: Option<Vec<String>>,
pub exclude_patterns: Option<Vec<String>>,
pub integrity_profile: Option<Box<DataIntegrityProfile>>,
}Fields§
§system_id: Option<String>§path: Option<String>§include_patterns: Option<Vec<String>>§exclude_patterns: Option<Vec<String>>§integrity_profile: Option<Box<DataIntegrityProfile>>Implementations§
Source§impl EtlDataSystem
impl EtlDataSystem
pub fn new() -> EtlDataSystem
Trait Implementations§
Source§impl Clone for EtlDataSystem
impl Clone for EtlDataSystem
Source§fn clone(&self) -> EtlDataSystem
fn clone(&self) -> EtlDataSystem
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 EtlDataSystem
impl Debug for EtlDataSystem
Source§impl Default for EtlDataSystem
impl Default for EtlDataSystem
Source§fn default() -> EtlDataSystem
fn default() -> EtlDataSystem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EtlDataSystem
impl<'de> Deserialize<'de> for EtlDataSystem
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 EtlDataSystem
impl PartialEq for EtlDataSystem
Source§impl Serialize for EtlDataSystem
impl Serialize for EtlDataSystem
impl StructuralPartialEq for EtlDataSystem
Auto Trait Implementations§
impl Freeze for EtlDataSystem
impl RefUnwindSafe for EtlDataSystem
impl Send for EtlDataSystem
impl Sync for EtlDataSystem
impl Unpin for EtlDataSystem
impl UnsafeUnpin for EtlDataSystem
impl UnwindSafe for EtlDataSystem
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