Returns string representation of this column path. ```rust use parquet::schema::types::ColumnPath; let path = ColumnPath::new(vec!["a".to_string(), "b".to_string(), "c".to_string()]); assert_eq!(&path.string(), "a.b.c"); ```
(&self)
| 781 | /// assert_eq!(&path.string(), "a.b.c"); |
| 782 | /// ``` |
| 783 | pub fn string(&self) -> String { |
| 784 | self.parts.join(".") |
| 785 | } |
| 786 | |
| 787 | /// Appends more components to end of column path. |
| 788 | /// ```rust |