Struct aws_sdk_glue::types::builders::SqlAliasBuilder
source · #[non_exhaustive]pub struct SqlAliasBuilder { /* private fields */ }Expand description
A builder for SqlAlias.
Implementations§
source§impl SqlAliasBuilder
impl SqlAliasBuilder
sourcepub fn from(self, input: impl Into<String>) -> Self
pub fn from(self, input: impl Into<String>) -> Self
A table, or a column in a table.
This field is required.sourcepub fn alias(self, input: impl Into<String>) -> Self
pub fn alias(self, input: impl Into<String>) -> Self
A temporary name given to a table, or a column in a table.
This field is required.sourcepub fn set_alias(self, input: Option<String>) -> Self
pub fn set_alias(self, input: Option<String>) -> Self
A temporary name given to a table, or a column in a table.
Trait Implementations§
source§impl Clone for SqlAliasBuilder
impl Clone for SqlAliasBuilder
source§fn clone(&self) -> SqlAliasBuilder
fn clone(&self) -> SqlAliasBuilder
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 SqlAliasBuilder
impl Debug for SqlAliasBuilder
source§impl Default for SqlAliasBuilder
impl Default for SqlAliasBuilder
source§fn default() -> SqlAliasBuilder
fn default() -> SqlAliasBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for SqlAliasBuilder
impl PartialEq for SqlAliasBuilder
source§fn eq(&self, other: &SqlAliasBuilder) -> bool
fn eq(&self, other: &SqlAliasBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SqlAliasBuilder
Auto Trait Implementations§
impl Freeze for SqlAliasBuilder
impl RefUnwindSafe for SqlAliasBuilder
impl Send for SqlAliasBuilder
impl Sync for SqlAliasBuilder
impl Unpin for SqlAliasBuilder
impl UnwindSafe for SqlAliasBuilder
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> 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 moreCreates a shared type from an unshared type.