pub struct TransformationLink {
pub id: Uuid,
pub name: String,
pub transformation_type: Option<String>,
pub url: Option<String>,
pub description: Option<String>,
}Expand description
Link to a transformation or data pipeline
Fields§
§id: UuidUnique identifier for the transformation
name: StringName of the transformation
transformation_type: Option<String>Type of transformation (e.g., “dbt”, “spark”, “airflow”)
url: Option<String>URL or path to the transformation definition
description: Option<String>Optional description
Trait Implementations§
Source§impl Clone for TransformationLink
impl Clone for TransformationLink
Source§fn clone(&self) -> TransformationLink
fn clone(&self) -> TransformationLink
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 TransformationLink
impl Debug for TransformationLink
Source§impl<'de> Deserialize<'de> for TransformationLink
impl<'de> Deserialize<'de> for TransformationLink
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 TransformationLink
impl PartialEq for TransformationLink
Source§impl Serialize for TransformationLink
impl Serialize for TransformationLink
impl StructuralPartialEq for TransformationLink
Auto Trait Implementations§
impl Freeze for TransformationLink
impl RefUnwindSafe for TransformationLink
impl Send for TransformationLink
impl Sync for TransformationLink
impl Unpin for TransformationLink
impl UnwindSafe for TransformationLink
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