Struct aws_sdk_omics::model::read_options::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ReadOptions
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn set_encoding(self, input: Option<String>) -> Self
pub fn set_encoding(self, input: Option<String>) -> Self
The file's encoding.
sourcepub fn quote_all(self, input: bool) -> Self
pub fn quote_all(self, input: bool) -> Self
Whether all values need to be quoted, or just those that contain quotes.
sourcepub fn set_quote_all(self, input: Option<bool>) -> Self
pub fn set_quote_all(self, input: Option<bool>) -> Self
Whether all values need to be quoted, or just those that contain quotes.
sourcepub fn escape(self, input: impl Into<String>) -> Self
pub fn escape(self, input: impl Into<String>) -> Self
A character for escaping quotes in the file.
sourcepub fn set_escape(self, input: Option<String>) -> Self
pub fn set_escape(self, input: Option<String>) -> Self
A character for escaping quotes in the file.
sourcepub fn escape_quotes(self, input: bool) -> Self
pub fn escape_quotes(self, input: bool) -> Self
Whether quotes need to be escaped in the file.
sourcepub fn set_escape_quotes(self, input: Option<bool>) -> Self
pub fn set_escape_quotes(self, input: Option<bool>) -> Self
Whether quotes need to be escaped in the file.
sourcepub fn set_comment(self, input: Option<String>) -> Self
pub fn set_comment(self, input: Option<String>) -> Self
The file's comment character.
sourcepub fn set_header(self, input: Option<bool>) -> Self
pub fn set_header(self, input: Option<bool>) -> Self
Whether the file has a header row.
sourcepub fn set_line_sep(self, input: Option<String>) -> Self
pub fn set_line_sep(self, input: Option<String>) -> Self
A line separator for the file.
sourcepub fn build(self) -> ReadOptions
pub fn build(self) -> ReadOptions
Consumes the builder and constructs a ReadOptions
.