pub struct DelimitedTextConfiguration {
pub column_separator: Option<String>,
pub field_quote: Option<String>,
pub record_separator: Option<String>,
pub escape_char: Option<String>,
pub has_headers: Option<bool>,
}
Expand description
Groups the settings used for interpreting the blob data if the blob is delimited text formatted.
Fields§
§column_separator: Option<String>
The string used to separate columns.
field_quote: Option<String>
The string used to quote a specific field.
record_separator: Option<String>
The string used to separate records.
escape_char: Option<String>
The string used as an escape character.
has_headers: Option<bool>
Represents whether the data has headers.
Implementations§
Trait Implementations§
source§impl Clone for DelimitedTextConfiguration
impl Clone for DelimitedTextConfiguration
source§fn clone(&self) -> DelimitedTextConfiguration
fn clone(&self) -> DelimitedTextConfiguration
Returns a copy 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 DelimitedTextConfiguration
impl Debug for DelimitedTextConfiguration
source§impl Default for DelimitedTextConfiguration
impl Default for DelimitedTextConfiguration
source§fn default() -> DelimitedTextConfiguration
fn default() -> DelimitedTextConfiguration
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DelimitedTextConfiguration
impl<'de> Deserialize<'de> for DelimitedTextConfiguration
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
impl StructuralPartialEq for DelimitedTextConfiguration
Auto Trait Implementations§
impl Freeze for DelimitedTextConfiguration
impl RefUnwindSafe for DelimitedTextConfiguration
impl Send for DelimitedTextConfiguration
impl Sync for DelimitedTextConfiguration
impl Unpin for DelimitedTextConfiguration
impl UnwindSafe for DelimitedTextConfiguration
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)