[READ-ONLY] Mirror of https://github.com/probablykasper/csv-pipeline.
0

Configure Feed

Select the types of activity you want to include in your feed.

Add from_col transformer method

Kasper (Jan 11, 2023, 12:43 PM +0100) dbbc1d67 373b8682

+4
+4
src/transform.rs
··· 35 35 from_col: col_name.to_string(), 36 36 } 37 37 } 38 + pub fn from_col(mut self, col_name: &str) -> Self { 39 + self.from_col = col_name.to_string(); 40 + self 41 + } 38 42 pub fn keep_unique(self) -> Box<dyn Transform> { 39 43 Box::new(KeepUnique { 40 44 name: self.name,