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