pub struct ETLJobMetadata {
pub job_name: String,
pub notes: Option<String>,
pub frequency: Option<String>,
}Expand description
ETL job metadata for data flow relationships
Fields§
§job_name: StringName of the ETL job that creates this relationship
notes: Option<String>Optional notes about the ETL job
frequency: Option<String>Job execution frequency (e.g., “daily”, “hourly”)
Trait Implementations§
Source§impl Clone for ETLJobMetadata
impl Clone for ETLJobMetadata
Source§fn clone(&self) -> ETLJobMetadata
fn clone(&self) -> ETLJobMetadata
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 ETLJobMetadata
impl Debug for ETLJobMetadata
Source§impl<'de> Deserialize<'de> for ETLJobMetadata
impl<'de> Deserialize<'de> for ETLJobMetadata
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ETLJobMetadata, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ETLJobMetadata, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ETLJobMetadata
impl PartialEq for ETLJobMetadata
Source§impl Serialize for ETLJobMetadata
impl Serialize for ETLJobMetadata
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ETLJobMetadata
Auto Trait Implementations§
impl Freeze for ETLJobMetadata
impl RefUnwindSafe for ETLJobMetadata
impl Send for ETLJobMetadata
impl Sync for ETLJobMetadata
impl Unpin for ETLJobMetadata
impl UnwindSafe for ETLJobMetadata
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