pub struct CsvExporter;Available on
server only.Expand description
CSV exporter
Implementations§
Source§impl CsvExporter
impl CsvExporter
Sourcepub fn export(
fields: &[String],
data: &[HashMap<String, String>],
include_headers: bool,
) -> AdminResult<Vec<u8>>
pub fn export( fields: &[String], data: &[HashMap<String, String>], include_headers: bool, ) -> AdminResult<Vec<u8>>
Export data to CSV format
§Examples
use reinhardt_admin::core::CsvExporter;
use std::collections::HashMap;
let fields = vec!["id".to_string(), "name".to_string()];
let mut row1 = HashMap::new();
row1.insert("id".to_string(), "1".to_string());
row1.insert("name".to_string(), "Alice".to_string());
let data = vec![row1];
let result = CsvExporter::export(&fields, &data, true);
assert!(result.is_ok());Auto Trait Implementations§
impl Freeze for CsvExporter
impl RefUnwindSafe for CsvExporter
impl Send for CsvExporter
impl Sync for CsvExporter
impl Unpin for CsvExporter
impl UnsafeUnpin for CsvExporter
impl UnwindSafe for CsvExporter
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more