pub struct ODCLExporter;Expand description
Exporter for ODCS (Open Data Contract Standard) v3.1.0 YAML format.
Implementations§
Source§impl ODCLExporter
impl ODCLExporter
Sourcepub fn export_table(table: &Table, _format: &str) -> String
pub fn export_table(table: &Table, _format: &str) -> String
Export a table to ODCS v3.1.0 YAML format.
Note: Only ODCS v3.1.0 format is supported. Legacy formats have been removed.
Sourcepub fn export(
&self,
tables: &[Table],
_format: &str,
) -> Result<HashMap<String, ExportResult>, ExportError>
pub fn export( &self, tables: &[Table], _format: &str, ) -> Result<HashMap<String, ExportResult>, ExportError>
Export tables to ODCS v3.1.0 YAML format (SDK interface).
Auto Trait Implementations§
impl Freeze for ODCLExporter
impl RefUnwindSafe for ODCLExporter
impl Send for ODCLExporter
impl Sync for ODCLExporter
impl Unpin for ODCLExporter
impl UnwindSafe for ODCLExporter
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