Struct aws_sdk_glue::types::builders::SerDeInfoBuilder
source · #[non_exhaustive]pub struct SerDeInfoBuilder { /* private fields */ }Expand description
A builder for SerDeInfo.
Implementations§
source§impl SerDeInfoBuilder
impl SerDeInfoBuilder
sourcepub fn serialization_library(self, input: impl Into<String>) -> Self
pub fn serialization_library(self, input: impl Into<String>) -> Self
Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.
sourcepub fn set_serialization_library(self, input: Option<String>) -> Self
pub fn set_serialization_library(self, input: Option<String>) -> Self
Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.
sourcepub fn get_serialization_library(&self) -> &Option<String>
pub fn get_serialization_library(&self) -> &Option<String>
Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.
sourcepub fn parameters(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn parameters(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to parameters.
To override the contents of this collection use set_parameters.
These key-value pairs define initialization parameters for the SerDe.
sourcepub fn set_parameters(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_parameters(self, input: Option<HashMap<String, String>>) -> Self
These key-value pairs define initialization parameters for the SerDe.
Trait Implementations§
source§impl Clone for SerDeInfoBuilder
impl Clone for SerDeInfoBuilder
source§fn clone(&self) -> SerDeInfoBuilder
fn clone(&self) -> SerDeInfoBuilder
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 SerDeInfoBuilder
impl Debug for SerDeInfoBuilder
source§impl Default for SerDeInfoBuilder
impl Default for SerDeInfoBuilder
source§fn default() -> SerDeInfoBuilder
fn default() -> SerDeInfoBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<SerDeInfoBuilder> for SerDeInfoBuilder
impl PartialEq<SerDeInfoBuilder> for SerDeInfoBuilder
source§fn eq(&self, other: &SerDeInfoBuilder) -> bool
fn eq(&self, other: &SerDeInfoBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SerDeInfoBuilder
Auto Trait Implementations§
impl RefUnwindSafe for SerDeInfoBuilder
impl Send for SerDeInfoBuilder
impl Sync for SerDeInfoBuilder
impl Unpin for SerDeInfoBuilder
impl UnwindSafe for SerDeInfoBuilder
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