Struct aws_sdk_omics::types::ReadOptions
source · #[non_exhaustive]pub struct ReadOptions {
pub sep: Option<String>,
pub encoding: Option<String>,
pub quote: Option<String>,
pub quote_all: bool,
pub escape: Option<String>,
pub escape_quotes: bool,
pub comment: Option<String>,
pub header: bool,
pub line_sep: Option<String>,
}
Expand description
Read options for an annotation import job.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.sep: Option<String>
The file's field separator.
encoding: Option<String>
The file's encoding.
quote: Option<String>
The file's quote character.
quote_all: bool
Whether all values need to be quoted, or just those that contain quotes.
escape: Option<String>
A character for escaping quotes in the file.
escape_quotes: bool
Whether quotes need to be escaped in the file.
comment: Option<String>
The file's comment character.
header: bool
Whether the file has a header row.
line_sep: Option<String>
A line separator for the file.
Implementations§
source§impl ReadOptions
impl ReadOptions
source§impl ReadOptions
impl ReadOptions
sourcepub fn builder() -> ReadOptionsBuilder
pub fn builder() -> ReadOptionsBuilder
Creates a new builder-style object to manufacture ReadOptions
.
Trait Implementations§
source§impl Clone for ReadOptions
impl Clone for ReadOptions
source§fn clone(&self) -> ReadOptions
fn clone(&self) -> ReadOptions
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 ReadOptions
impl Debug for ReadOptions
source§impl PartialEq<ReadOptions> for ReadOptions
impl PartialEq<ReadOptions> for ReadOptions
source§fn eq(&self, other: &ReadOptions) -> bool
fn eq(&self, other: &ReadOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ReadOptions
Auto Trait Implementations§
impl RefUnwindSafe for ReadOptions
impl Send for ReadOptions
impl Sync for ReadOptions
impl Unpin for ReadOptions
impl UnwindSafe for ReadOptions
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